circulartext commited on
Commit
9796103
·
1 Parent(s): ccfaf33

Update entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +2 -6
entrypoint.sh CHANGED
@@ -1,11 +1,7 @@
1
  #!/bin/bash
2
 
3
- # Set the correct permissions on the /app directory as root
4
- chmod -R 777 /app
5
 
6
- # Start the FastAPI application as root initially
7
  exec "$@"
8
 
9
- # Optionally, switch to a non-root user if needed
10
- # USER 1000
11
- # exec gosu 1000 "$@"
 
1
  #!/bin/bash
2
 
3
+ # Custom logic or configurations
 
4
 
5
+ # Start the main application process
6
  exec "$@"
7