FROM python:3.11-alpine COPY requirements.txt requirements.txt COPY scraper.py scraper.py RUN pip install -r requirements.txt ENTRYPOINT [ "python", "scraper.py", "-c", "/data/config.json" ]