Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 10 |
COPY main.py .
|
| 11 |
|
| 12 |
# Expose the port the app runs on
|
| 13 |
-
EXPOSE
|
| 14 |
|
| 15 |
# Command to run the application
|
| 16 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 10 |
COPY main.py .
|
| 11 |
|
| 12 |
# Expose the port the app runs on
|
| 13 |
+
EXPOSE 7860
|
| 14 |
|
| 15 |
# Command to run the application
|
| 16 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|