Files
football-api/scraper/Dockerfile
rgcosta f6e92299cd
Some checks failed
Build & Push Football Docker Images / build-push-update (push) Failing after 4s
Add scraper/Dockerfile
2026-04-12 01:02:08 +00:00

6 lines
155 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir httpx beautifulsoup4 lxml
COPY scraper.py .
VOLUME ["/data"]
CMD ["python", "scraper.py"]