Compare commits

...

2 commits

Author SHA1 Message Date
6da948ff33
Update runtime to Python 3.12
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-02-02 21:07:50 +01:00
b132591730
Fix poetry install 2025-02-02 21:07:08 +01:00

View file

@ -1,5 +1,5 @@
# `python-base` sets up all our shared environment variables
FROM python:3.11-slim as python-base
FROM python:3.12-slim as python-base
# python
ENV PYTHONUNBUFFERED=1 \
@ -48,7 +48,7 @@ WORKDIR $PYSETUP_PATH
COPY poetry.lock pyproject.toml ./
# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
RUN poetry install --no-dev
RUN poetry install
# `production` image used for runtime
FROM python-base as production