scratch-www/docker_entrypoint.sh

12 lines
194 B
Bash
Raw Normal View History

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