pytubedl/Dockerfile
kleph 3af66de155
All checks were successful
continuous-integration/drone/push Build is passing
Add real download feature
2021-04-13 05:58:41 +02:00

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"]