autog / Dockerfile
dfa32412's picture
Update Dockerfile
3fe6d6b verified
raw
history blame contribute delete
334 Bytes
FROM mcr.microsoft.com/playwright/python:v1.44.0-jammy
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
xvfb \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir flask requests playwright
run python -m playwright install --with-deps chromium
COPY . .
CMD ["python", "app.py"]