2020-08-22 15:33:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# We use this file to translate environmental variables to .env files used by the application
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-08-22 18:44:32 +00:00
|
|
|
node ./docker-entrypoint.js > ./config.js
|
2020-08-22 15:33:01 +00:00
|
|
|
|
2020-08-22 20:27:05 +00:00
|
|
|
exec "$@"
|