8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
umask 077
|
|
printf '%s' "${GOOGLE_ADC_B64}" | base64 -d > "${GOOGLE_APPLICATION_CREDENTIALS}"
|
|
|
|
exec /app/docker/prod_entrypoint.sh "$@"
|