Dockerfile 160 B

123456789
  1. FROM python:3
  2. ADD subtitles.py /
  3. ADD requirements.txt /
  4. ADD templates /templates
  5. RUN pip3 install -r requirements.txt
  6. ENTRYPOINT ["python3", "subtitles.py"]