backtest-automation/Dockerfile

5 lines
149 B
Docker
Raw Normal View History

FROM python:3.10
COPY download_spx_quotes.py .
COPY requirements.txt .
RUN pip install -r requirements.txt
CMD ["python", "./download_spx_quotes.py"]