Christian Struck

Results 11 comments of Christian Struck

```Dockerfile ARG PYTHON_VERSION=3.11 FROM python:${PYTHON_VERSION}-slim AS requirements-stage ARG POETRY_VERSION=1.7.1 WORKDIR /tmp RUN pip install --no-cache-dir "poetry==${POETRY_VERSION}" COPY ./pyproject.toml ./poetry.lock* /tmp/ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes \ &&...