Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -17,7 +17,7 @@ RUN pip install --upgrade pip
|
|
17 |
RUN pip install -r requirements.txt
|
18 |
|
19 |
# Expose the port the app runs on
|
20 |
-
EXPOSE
|
21 |
|
22 |
# Command to run the app using Uvicorn server
|
23 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
17 |
RUN pip install -r requirements.txt
|
18 |
|
19 |
# Expose the port the app runs on
|
20 |
+
EXPOSE 7860
|
21 |
|
22 |
# Command to run the app using Uvicorn server
|
23 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|