Spaces:
Sleeping
Sleeping
File size: 103 Bytes
2bd12b8 |
1 2 3 4 5 6 7 8 9 |
#!/bin/sh
set -e
# Set permissions at runtime
chmod -R 777 /app
# Execute the main command
exec "$@"
|