AiDeveloper1 commited on
Commit
05b676a
·
verified ·
1 Parent(s): 809d3bd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -35,8 +35,8 @@ COPY requirements.txt .
35
  RUN pip install --upgrade pip && pip install -r requirements.txt
36
 
37
  # Install Playwright browsers
38
- RUN playwright install --with-deps
39
- RUN playwright install chorium --with-deps
40
 
41
  # Copy application files
42
  COPY . .
 
35
  RUN pip install --upgrade pip && pip install -r requirements.txt
36
 
37
  # Install Playwright browsers
38
+ RUN pip install --no-cache-dir playwright && \
39
+ playwright install chromium
40
 
41
  # Copy application files
42
  COPY . .