Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -10,4 +10,4 @@ RUN pip install --upgrade pip
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
COPY --chown=user . /app
|
12 |
EXPOSE 7860
|
13 |
-
CMD gunicorn --workers 5 --threads 2 -b 0.0.0.0:
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
COPY --chown=user . /app
|
12 |
EXPOSE 7860
|
13 |
+
CMD gunicorn --workers 5 --threads 2 -b 0.0.0.0:7860 --timeout 0 app:server
|