etukurudinesh commited on
Commit
263b3db
·
1 Parent(s): 1af8972

fix: Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -28,7 +28,8 @@ COPY --chown=user ./requirements.txt requirements.txt
28
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
29
 
30
  # Install Playwright browsers
31
- RUN playwright install
 
32
 
33
  COPY --chown=user . /app
34
  #CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
28
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
29
 
30
  # Install Playwright browsers
31
+ RUN pip install playwright
32
+ RUN playwright install --with-deps
33
 
34
  COPY --chown=user . /app
35
  #CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]