10 lines
162 B
Docker
10 lines
162 B
Docker
|
FROM python:slim
|
||
|
|
||
|
RUN pip install flask
|
||
|
COPY /pytubedl/pytubedl.py /pytubedl.py
|
||
|
COPY /pytubedl/templates /templates
|
||
|
EXPOSE 5000
|
||
|
|
||
|
CMD ["python", "pytubedl.py"]
|
||
|
|