Add scraper/Dockerfile
Some checks failed
Build & Push Football Docker Images / build-push-update (push) Failing after 4s

This commit is contained in:
2026-04-12 01:02:08 +00:00
parent d9526b3236
commit f6e92299cd

6
scraper/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
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"]