Build an image and add it to compose
This commit is contained in:
parent
56641f66d5
commit
a9d7f142e7
3 changed files with 30 additions and 2 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
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 hedgedoc-expire.py /
|
||||
ENTRYPOINT ["/venv/bin/python", "/hedgedoc-expire.py"]
|
Loading…
Add table
Add a link
Reference in a new issue