From f6e92299cdf107a0df5fe9eba100d2f8921ea4d8 Mon Sep 17 00:00:00 2001 From: rgcosta Date: Sun, 12 Apr 2026 01:02:08 +0000 Subject: [PATCH] Add scraper/Dockerfile --- scraper/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scraper/Dockerfile 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