Spaces:
Sleeping
Sleeping
Create entrypoint.sh
Browse files- entrypoint.sh +7 -0
entrypoint.sh
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Any setup or configuration steps before running the main application
|
| 4 |
+
# ...
|
| 5 |
+
|
| 6 |
+
# Run the main application
|
| 7 |
+
exec uvicorn app:app --host 0.0.0.0 --port 7860
|