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