Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -48,6 +48,6 @@ RUN chmod -R 755 /app
|
|
| 48 |
# Expose the port the app runs on
|
| 49 |
EXPOSE 8000
|
| 50 |
|
| 51 |
-
CMD python main.py
|
| 52 |
# Command to run the FastAPI application
|
| 53 |
-
|
|
|
|
| 48 |
# Expose the port the app runs on
|
| 49 |
EXPOSE 8000
|
| 50 |
|
| 51 |
+
# CMD python main.py
|
| 52 |
# Command to run the FastAPI application
|
| 53 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|