You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 202 B

1234567891011
  1. FROM python:3-alpine
  2. RUN mkdir /code
  3. COPY requirements.txt /code
  4. COPY download.py /code
  5. WORKDIR /code
  6. RUN pip install -r requirements.txt
  7. ENV PYTHONUNBUFFERED=1
  8. ENTRYPOINT ["python3", "download.py"]