Compare commits

..

1 commit

Author SHA1 Message Date
e9bf6b1706
Fix poetry install
Some checks failed
ci/woodpecker/manual/docker Pipeline failed
2025-02-02 21:02:44 +01:00

View file

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