5 lines
149 B
Docker
5 lines
149 B
Docker
|
FROM python:3.10
|
||
|
COPY download_spx_quotes.py .
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install -r requirements.txt
|
||
|
CMD ["python", "./download_spx_quotes.py"]
|