Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -3,5 +3,5 @@ WORKDIR /webapp
|
|
3 |
COPY . .
|
4 |
RUN pip install --upgrade pip
|
5 |
RUN pip install --no-cache-dir -r requirements.txt
|
6 |
-
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "
|
7 |
EXPOSE 7860
|
|
|
3 |
COPY . .
|
4 |
RUN pip install --upgrade pip
|
5 |
RUN pip install --no-cache-dir -r requirements.txt
|
6 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]
|
7 |
EXPOSE 7860
|