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

@ -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 --without dev
# `production` image used for runtime
FROM python-base as production