Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -25,7 +25,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 25 |
COPY . .
|
| 26 |
|
| 27 |
# Expose the Flask port
|
| 28 |
-
EXPOSE
|
| 29 |
|
| 30 |
# Run the application
|
| 31 |
-
CMD ["flask", "run", "--host=0.0.0.0", "--port=
|
|
|
|
| 25 |
COPY . .
|
| 26 |
|
| 27 |
# Expose the Flask port
|
| 28 |
+
EXPOSE 7860
|
| 29 |
|
| 30 |
# Run the application
|
| 31 |
+
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"]
|