File size: 292 Bytes
410d3bc |
1 2 3 4 5 6 7 8 |
FROM mcr.microsoft.com/playwright/python:v1.47.0-noble
WORKDIR /code
RUN chmod 777 /code
RUN pip install patchright apscheduler fastapi httpx python-multipart uvicorn
RUN mkdir -p /.cache && chmod 777 /.cache
RUN patchright install --with-deps chromium
COPY . .
CMD ["python", "/code/app.py"] |