Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
14 |
COPY . .
|
15 |
|
16 |
# Expose the port that FastAPI will run on
|
17 |
-
EXPOSE
|
18 |
|
19 |
# Command to run the FastAPI application
|
20 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
14 |
COPY . .
|
15 |
|
16 |
# Expose the port that FastAPI will run on
|
17 |
+
EXPOSE 7860
|
18 |
|
19 |
# Command to run the FastAPI application
|
20 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|