Spaces:
Running
Running
File size: 319 Bytes
255e074 483c169 255e074 483c169 255e074 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM mcr.microsoft.com/playwright/python:v1.54.0-noble
WORKDIR /app
RUN apt-get update && apt-get upgrade -y && apt-get clean
COPY requirements.txt .
RUN pip install --break-system-packages -r requirements.txt
RUN python -m playwright install --with-deps chromium
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]
|