-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from bento-platform/fix/prod-entrypoint
fix: missing tmp directory in production image
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
source /create_service_user.bash | ||
|
||
# Set up Git configuration if needed (useful for development images / containers) | ||
gosu bento_user /bin/bash -c '/set_gitconfig.bash' | ||
|
||
# Addition to base entrypoint: fix default production temporary folder permissions | ||
if [[ -d '/reference/tmp' ]]; then | ||
chown -R bento_user:bento_user '/reference/tmp' | ||
fi | ||
|
||
# Drop into bento_user from root and execute the CMD specified for the image | ||
exec gosu bento_user "$@" |