pytubedl/Dockerfile

14 lines
228 B
Docker
Raw Normal View History

2021-04-12 22:57:39 +02:00
FROM python:slim
2021-04-13 04:09:53 +02:00
# flask and app
2021-04-12 23:23:48 +02:00
RUN pip install flask flask-wtf
2021-04-12 22:57:39 +02:00
COPY /pytubedl/pytubedl.py /pytubedl.py
COPY /pytubedl/templates /templates
EXPOSE 5000
2021-04-13 04:09:53 +02:00
# youtube-dl
RUN pip install youtube_dl
2021-04-12 22:57:39 +02:00
CMD ["python", "pytubedl.py"]