changed port
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -12,7 +12,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
12 |
pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
# Expose the port the app runs on
|
15 |
-
EXPOSE
|
16 |
|
17 |
# Command to run the FastAPI app using Uvicorn
|
18 |
-
CMD ["uvicorn", "App.app:app", "--host", "0.0.0.0", "--port", "
|
|
|
12 |
pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
# Expose the port the app runs on
|
15 |
+
EXPOSE 7860
|
16 |
|
17 |
# Command to run the FastAPI app using Uvicorn
|
18 |
+
CMD ["uvicorn", "App.app:app", "--host", "0.0.0.0", "--port", "7860"]
|