FROM python:3-alpine COPY . /code WORKDIR /code RUN pip install -r requirements.txt ENTRYPOINT ["python3", "download.py"]