Ezhil commited on
Commit ·
e04cffe
1
Parent(s): c23a54f
second commit
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -12,7 +12,9 @@ COPY requirements.txt .
|
|
| 12 |
RUN pip install -r requirements.txt
|
| 13 |
|
| 14 |
# Expose the port the app runs on
|
| 15 |
-
EXPOSE
|
| 16 |
|
| 17 |
# Command to run the application
|
| 18 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
|
|
|
|
|
|
| 12 |
RUN pip install -r requirements.txt
|
| 13 |
|
| 14 |
# Expose the port the app runs on
|
| 15 |
+
EXPOSE 7860
|
| 16 |
|
| 17 |
# Command to run the application
|
| 18 |
+
# CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
| 19 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
| 20 |
+
|