b072d88c0a
Bullseye has been out for a bit now and buster has a shelf life. Update to bullseye to keep up with debian's releases. Change-Id: I5845a8cf5c7a0c6383e9c2863146df28c7e40a4f
14 lines
244 B
Docker
14 lines
244 B
Docker
|
|
FROM opendevorg/python-builder:3.9-bullseye as builder
|
|
|
|
COPY . /tmp/src
|
|
RUN assemble
|
|
|
|
FROM opendevorg/python-base:3.9-bullseye as ptgbot
|
|
|
|
COPY --from=builder /output/ /output
|
|
RUN /output/install-from-bindep
|
|
|
|
COPY init.sh init.sh
|
|
CMD ./init.sh
|