We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a5312 commit e638554Copy full SHA for e638554
Dockerfile
@@ -79,11 +79,12 @@ RUN apt-get update && apt-get install -y \
79
80
ENV POETRY_NO_INTERACTION=1 \
81
POETRY_VIRTUALENVS_IN_PROJECT=1 \
82
- POETRY_VIRTUALENVS_CREATE=1
+ POETRY_VIRTUALENVS_CREATE=1 \
83
+ POETRY_CACHE_DIR=/tmp/poetry_cache
84
85
COPY pyproject.toml poetry.lock ./
86
RUN pip install poetry
-RUN poetry install --no-root
87
+RUN poetry install --no-root && rm -rf $POETRY_CACHE_DIR
88
RUN poetry run playwright install --with-deps chromium
89
90
USER ${USER}
0 commit comments