v1 complete
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -7,8 +7,8 @@ WORKDIR /code
|
|
7 |
|
8 |
|
9 |
|
10 |
-
RUN pip install --no-cache-dir flask
|
11 |
|
12 |
|
13 |
-
CMD ["
|
14 |
|
|
|
7 |
|
8 |
|
9 |
|
10 |
+
RUN pip install --no-cache-dir flask gunicorn
|
11 |
|
12 |
|
13 |
+
CMD ["gunicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
14 |
|