Files
SimpleScraper/Dockerfile

14 lines
275 B
Docker

FROM mcr.microsoft.com/playwright/python:v1.57.0-jammy
WORKDIR /app
ENV PYTHONUNBUFFERED=1
COPY scraper_service.py /app/scraper_service.py
RUN python -m pip install --no-cache-dir flask beautifulsoup4 playwright==1.57.0
EXPOSE 9777
CMD ["python", "scraper_service.py"]