We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfacf0 commit ff09afcCopy full SHA for ff09afc
Dockerfile
@@ -2,6 +2,9 @@ FROM python:3.11-slim
2
3
WORKDIR /app
4
5
+# Set Playwright browser path to a consistent location
6
+ENV PLAYWRIGHT_BROWSERS_PATH=/app/.playwright
7
+
8
RUN apt-get update && apt-get install -y \
9
libglib2.0-0 \
10
libnss3 \
@@ -27,7 +30,7 @@ RUN apt-get update && apt-get install -y \
27
30
COPY . .
28
31
29
32
RUN pip install uv && uv sync
-RUN uv run playwright install
33
+RUN uv run python -m playwright install chromium
34
35
RUN chmod +x /app/entrypoint.sh
36
0 commit comments