hedgedoc-expire/Dockerfile
Julian Schacher 86e03c0d4e make docker image build work
- Depend on a python version Debian actually ships with in
  pyproject.toml and update the poetry.lock accordingly.
- Fix poetry bundle complaining about no python by installing
  python-is-python3.
  Also remove the python flag for poetry bundle then.
2024-11-25 17:50:55 +01:00

14 lines
No EOL
488 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 python-is-python3
ENV PATH="/root/.local/bin:${PATH}"
RUN pipx install poetry
RUN pipx inject poetry poetry-plugin-bundle
WORKDIR /src
COPY . .
RUN poetry bundle venv --only=main /venv
FROM gcr.io/distroless/python3-debian12
COPY --from=builder /venv /venv
COPY hedgedoc-expire.py /
ENTRYPOINT ["/venv/bin/python", "/hedgedoc-expire.py"]