euronext-scraper/Dockerfile

8 lines
193 B
Docker
Raw Normal View History

2023-12-16 15:45:40 +00:00
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" ]