Hello, world
Some checks failed
docker-image / docker (push) Failing after 25s

This commit is contained in:
Stefan Bethke 2025-05-30 19:04:13 +02:00
commit d702695b3b
6 changed files with 108 additions and 0 deletions

15
Dockerfile Normal file
View file

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