Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -29,7 +29,7 @@ COPY . .
|
|
29 |
#RUN mkdir -p /app/cache
|
30 |
|
31 |
# Expose FastAPI's default port
|
32 |
-
EXPOSE
|
33 |
|
34 |
# Run the FastAPI app with Uvicorn
|
35 |
-
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "
|
|
|
29 |
#RUN mkdir -p /app/cache
|
30 |
|
31 |
# Expose FastAPI's default port
|
32 |
+
EXPOSE 7860
|
33 |
|
34 |
# Run the FastAPI app with Uvicorn
|
35 |
+
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "7860"]
|