scrape.gov / Dockerfile
lljz66's picture
Create Dockerfile
7ff05f3 verified
raw
history blame contribute delete
291 Bytes
FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Install Playwright browsers
RUN playwright install chromium
COPY . .
# Create data directory
RUN mkdir -p /app/data
CMD ["python", "app.py"]