Use python from venv
All checks were successful
Run Tests / run-tests (push) Successful in 1m15s
Build & Release / build-docker-image (push) Successful in 2m21s
Build & Release / deploy-to-production (push) Successful in 26s

This commit is contained in:
2026-05-01 20:31:19 +02:00
parent d665d8e1a0
commit 450533414e
2 changed files with 34 additions and 4 deletions

View File

@@ -13,6 +13,9 @@ ENV PYTHONFAULTHANDLER=1 \
POETRY_CACHE_DIR='/var/cache/pypoetry' \
POETRY_HOME='/usr/local'
RUN apk update && \
apk upgrade && \
rm -rf /var/cache/apk/*
RUN apk add --no-cache tini
RUN pip install -Iv --no-cache-dir "poetry==${POETRY_VERSION}"