Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -15,7 +15,8 @@ COPY app.py .
|
|
| 15 |
COPY NEW_AI_INFRA.html .
|
| 16 |
|
| 17 |
# Expose the port Flask runs on
|
| 18 |
-
EXPOSE
|
| 19 |
|
| 20 |
# Run the application
|
|
|
|
| 21 |
CMD ["python", "app.py"]
|
|
|
|
| 15 |
COPY NEW_AI_INFRA.html .
|
| 16 |
|
| 17 |
# Expose the port Flask runs on
|
| 18 |
+
EXPOSE 7860
|
| 19 |
|
| 20 |
# Run the application
|
| 21 |
+
# Note: We set host to 0.0.0.0 so it's accessible outside the container
|
| 22 |
CMD ["python", "app.py"]
|