From 5205c484b8e91f7acb3b9028c6eafcfd8fb7f5c1 Mon Sep 17 00:00:00 2001 From: kleph Date: Mon, 12 Apr 2021 23:23:48 +0200 Subject: [PATCH] [docker] Install Flask-WTForms --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95796f3..22b2170 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:slim -RUN pip install flask +RUN pip install flask flask-wtf COPY /pytubedl/pytubedl.py /pytubedl.py COPY /pytubedl/templates /templates EXPOSE 5000