circulartext commited on
Commit
2bd12b8
1 Parent(s): 22276f3

Create entrypoint.w

Browse files
Files changed (1) hide show
  1. entrypoint.w +8 -0
entrypoint.w ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
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 "$@"