14 lines
236 B
Docker
14 lines
236 B
Docker
FROM python:slim
|
|
|
|
# flask and app
|
|
RUN pip install flask flask-wtf
|
|
COPY /pytubedl/ /pytubedl/
|
|
RUN chmod 755 /pytubedl/dl_wrapper.sh
|
|
EXPOSE 5000
|
|
|
|
# youtube-dl
|
|
RUN pip install youtube_dl
|
|
|
|
WORKDIR /pytubedl
|
|
CMD ["python", "pytubedl.py"]
|
|
|