ptgbot/Dockerfile
Clark Boylan b072d88c0a Update ptgbot's docker image to bullseye
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
2021-12-09 15:36:05 -08:00

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