Spaces:
Sleeping
Sleeping
Commit
·
c379058
1
Parent(s):
f58c1fa
Update entrypoint.sh
Browse files- entrypoint.sh +4 -5
entrypoint.sh
CHANGED
|
@@ -1,8 +1,7 @@
|
|
| 1 |
-
#!/bin/
|
| 2 |
-
set -e
|
| 3 |
|
| 4 |
-
# Set permissions
|
| 5 |
chmod -R 777 /app
|
| 6 |
|
| 7 |
-
#
|
| 8 |
-
exec "$@"
|
|
|
|
| 1 |
+
#!/bin/bash
|
|
|
|
| 2 |
|
| 3 |
+
# Set the correct permissions on the /app directory
|
| 4 |
chmod -R 777 /app
|
| 5 |
|
| 6 |
+
# Start the FastAPI application
|
| 7 |
+
exec "$@"
|