autog / Dockerfile
dfa32412's picture
Create Dockerfile
3187d57 verified
raw
history blame
216 Bytes
FROM mcr.microsoft.com/playwright/python:v1.44.0-jammy
WORKDIR /app
RUN pip install --no-cache-dir flask requests playwright
run python -m playwright install --with-deps chromium
COPY . .
CMD ["python", "app.py"]