Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -38,5 +38,5 @@ USER appuser
|
|
| 38 |
# Define the entrypoint script to handle user creation and application startup
|
| 39 |
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
| 40 |
|
| 41 |
-
#
|
| 42 |
-
CMD ["uvicorn", "app
|
|
|
|
| 38 |
# Define the entrypoint script to handle user creation and application startup
|
| 39 |
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
| 40 |
|
| 41 |
+
# Specify the command to run your application
|
| 42 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|