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 6a4d430 commit 8a3e518Copy full SHA for 8a3e518
Dockerfile
@@ -79,7 +79,8 @@ RUN apt-get update && apt-get install -y \
79
ENV POETRY_NO_INTERACTION=1 \
80
POETRY_VIRTUALENVS_IN_PROJECT=1 \
81
POETRY_VIRTUALENVS_CREATE=1 \
82
- POETRY_CACHE_DIR=/tmp/poetry_cache
+ POETRY_CACHE_DIR=/tmp/poetry_cache \
83
+ PLAYWRIGHT_BROWSERS_PATH=${APP_DIR}/browsers
84
85
COPY pyproject.toml poetry.lock ./
86
RUN pip install poetry
docker-compose.yml
@@ -15,6 +15,8 @@ services:
15
- db
16
volumes:
17
- ./:/app
18
+ - venv:/app/.venv
19
+ - playwright_browsers:/app/browsers
20
restart: unless-stopped
21
22
asset_builder:
@@ -44,3 +46,5 @@ services:
44
46
45
47
postgres_data:
48
redis_data:
49
+ venv:
50
+ playwright_browsers:
0 commit comments