Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -37,7 +37,7 @@ RUN chmod -R 777 /app
|
|
37 |
RUN touch /app/app.db
|
38 |
|
39 |
# Expose FastAPI port
|
40 |
-
EXPOSE
|
41 |
|
42 |
# Run the app using Uvicorn
|
43 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
37 |
RUN touch /app/app.db
|
38 |
|
39 |
# Expose FastAPI port
|
40 |
+
EXPOSE 7860
|
41 |
|
42 |
# Run the app using Uvicorn
|
43 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|