euronext-scraper/Dockerfile
2023-12-16 16:45:40 +01:00

7 lines
193 B
Docker

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" ]