pytubedl/Dockerfile

10 lines
172 B
Docker
Raw Normal View History

2021-04-12 22:57:39 +02:00
FROM python:slim
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
CMD ["python", "pytubedl.py"]