Speedofmastery commited on
Commit
0c26bda
·
1 Parent(s): 939dd28

Auto-commit: Dockerfile updated

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -47,6 +47,9 @@ COPY requirements.txt .
47
  # Install Python dependencies
48
  RUN pip install --no-cache-dir -r requirements.txt
49
 
 
 
 
50
  # Copy application code
51
  COPY app.py .
52
 
 
47
  # Install Python dependencies
48
  RUN pip install --no-cache-dir -r requirements.txt
49
 
50
+ # Install Playwright and Chromium browser
51
+ RUN playwright install chromium --with-deps
52
+
53
  # Copy application code
54
  COPY app.py .
55