Some checks failed
Build & Push Football Docker Images / build-push-update (push) Failing after 4s
6 lines
155 B
Docker
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"] |