diff --git a/scraper/Dockerfile b/scraper/Dockerfile new file mode 100644 index 0000000..b122563 --- /dev/null +++ b/scraper/Dockerfile @@ -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"] \ No newline at end of file