gunicorn
Browse files- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
@@ -13,4 +13,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
13 |
|
14 |
COPY --chown=user . /app
|
15 |
|
16 |
-
CMD ["
|
|
|
13 |
|
14 |
COPY --chown=user . /app
|
15 |
|
16 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
pytube==15.0.0
|
2 |
pandas==2.2.2
|
3 |
-
|
4 |
gunicorn==22.0.0
|
|
|
1 |
pytube==15.0.0
|
2 |
pandas==2.2.2
|
3 |
+
flask==3.0.3
|
4 |
gunicorn==22.0.0
|