littlelink-server/entrypoint.sh

7 lines
204 B
Bash
Raw Normal View History

2021-08-10 04:58:26 +02:00
#!/bin/bash
originalfile="/usr/src/app/env.js"
2021-08-10 04:58:26 +02:00
tmpfile=$(mktemp)
cp --attributes-only --preserve $originalfile $tmpfile
cat $originalfile | envsubst | tee $tmpfile && mv $tmpfile $originalfile
exec "$@"