9 lines
162 B
Docker
9 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"]
|
|
|