hmdooris/Dockerfile
Stefan Bethke afcaa77d81
Some checks failed
docker-image / docker (push) Failing after 2m7s
Add workflow
2025-05-24 13:03:40 +02:00

14 lines
No EOL
490 B
Docker

FROM docker.io/library/debian:12-slim AS builder
RUN apt-get update && \
apt-get install --no-install-suggests --no-install-recommends --yes pipx
ENV PATH="/root/.local/bin:${PATH}"
RUN pipx install poetry
RUN pipx inject poetry poetry-plugin-bundle
WORKDIR /src
COPY . .
RUN poetry bundle venv --python=/usr/bin/python3 --only=main /venv
FROM gcr.io/distroless/python3-debian12
COPY --from=builder /venv /venv
COPY hmdooris/ /hmdooris
ENTRYPOINT ["/venv/bin/python", "-m", "hmdooris"]