Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -14,8 +14,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 14 |
COPY . .
|
| 15 |
|
| 16 |
# Expose the port the app runs on (defined by the PORT environment variable or 5000)
|
| 17 |
-
EXPOSE
|
| 18 |
|
| 19 |
# Define the command to run the application
|
| 20 |
# Run the application using Gunicorn
|
| 21 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
|
| 14 |
COPY . .
|
| 15 |
|
| 16 |
# Expose the port the app runs on (defined by the PORT environment variable or 5000)
|
| 17 |
+
EXPOSE 7860
|
| 18 |
|
| 19 |
# Define the command to run the application
|
| 20 |
# Run the application using Gunicorn
|
| 21 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|