mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
70468321c5
Completes first pass at dockerization
11 lines
194 B
Bash
Executable file
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 "$@"
|