9 lines
150 B
Bash
9 lines
150 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cp ${CONFIG_JSON_PATH} /home/node/app/src/config/config.json
|
|
cp ${CONFIG_JS_PATH} /home/node/app/src/config/config.js
|
|
|
|
exec "$@"
|