crypto-reporter/Dockerfile

10 lines
171 B
Docker

FROM python:3-alpine
# Install dependencies:
COPY requirements.txt .
RUN pip install -r requirements.txt
# Run the application:
COPY main.py .
CMD ["python", "main.py"]