Add entrypoint and envsubst

This commit is contained in:
Daniel Berteaud 2023-11-13 21:12:25 +01:00
parent 4b893235c8
commit 031c278a45
4 changed files with 26 additions and 12 deletions

View File

@ -1,9 +0,0 @@
MIT License
Copyright (c) 2023 nomad
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,3 +0,0 @@
# base_tools
Tools to include in base images

22
entrypoint.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/sh
set -eo pipefail
if [ "${ENTRYPOINT_SCRIPTS:-true}" != "false" ]; then
# Scriplets in /entrypoint.d will be sourced (if ending with .env) or executed
if [ -d "/entrypoint.d" ]; then
for H in $(find /entrypoint.d -type f -o -type l | sort); do
if [[ "$H" == "*.env" ]]; then
echo "Sourcing entrypoint snippet $H"
source "$H"
elif [ -x "$H" ]; then
echo "Running entrypoint script $H"
$H "$@"
else
echo "Skiping $H"
fi
done
fi
fi
exec "$@"

4
usr/local/bin/envsubst Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# Same as envsubst from gettext, but only replace ${FOO} and not $FOO
busybox awk '{ for (a in ENVIRON) gsub("${" _ a _ "}",ENVIRON[a]); print }'