We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62f0ef7 commit 0d9aa95Copy full SHA for 0d9aa95
dockerfile
@@ -2,7 +2,8 @@ FROM python:3.10.12 AS base
2
3
WORKDIR /code
4
5
-RUN pip install --no-cache-dir poetry
+ARG POETRY_VERSION=2.3.1
6
+RUN pip install --no-cache-dir "poetry==${POETRY_VERSION}"
7
COPY pyproject.toml poetry.lock /code/
8
RUN poetry sync --no-root --without dev
9
0 commit comments