Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -19,7 +19,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 19 |
COPY . .
|
| 20 |
|
| 21 |
# Expose port
|
| 22 |
-
EXPOSE
|
| 23 |
|
| 24 |
# Run app using Gunicorn
|
| 25 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
|
| 19 |
COPY . .
|
| 20 |
|
| 21 |
# Expose port
|
| 22 |
+
EXPOSE 7860
|
| 23 |
|
| 24 |
# Run app using Gunicorn
|
| 25 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|