scratch-www/docker_entrypoint.sh
Colby Gutierrez-Kraybill 70468321c5 Docker files
Completes first pass at dockerization
2018-03-23 15:50:01 -04:00

11 lines
194 B
Bash
Executable file

#!/usr/bin/env bash
echo "App Entrypoint"
if [ ! -f /runtime/.translations ]; then
echo "Generating intl/translations"
make translations
touch /runtime/.translations
fi
exec "$@"