Spaces:
Sleeping
Sleeping
Commit
·
9134064
1
Parent(s):
3068f36
Update entrypoint.sh
Browse files- entrypoint.sh +3 -0
entrypoint.sh
CHANGED
|
@@ -1,6 +1,9 @@
|
|
| 1 |
#!/bin/sh
|
| 2 |
set -e
|
| 3 |
|
|
|
|
|
|
|
|
|
|
| 4 |
# Execute the main command
|
| 5 |
exec "$@"
|
| 6 |
|
|
|
|
| 1 |
#!/bin/sh
|
| 2 |
set -e
|
| 3 |
|
| 4 |
+
# Set permissions at runtime
|
| 5 |
+
chmod -R 777 /app
|
| 6 |
+
|
| 7 |
# Execute the main command
|
| 8 |
exec "$@"
|
| 9 |
|