Sync Model
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -21,7 +21,7 @@ RUN apt-get update -y && \
|
|
21 |
rm -rf var/lib/apt/lists/*
|
22 |
|
23 |
# Expose the desired port (e.g., 8000 for a FastAPI app)
|
24 |
-
EXPOSE
|
25 |
|
26 |
# Default command to run the application
|
27 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
21 |
rm -rf var/lib/apt/lists/*
|
22 |
|
23 |
# Expose the desired port (e.g., 8000 for a FastAPI app)
|
24 |
+
EXPOSE 7860
|
25 |
|
26 |
# Default command to run the application
|
27 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|