haste-server/docker-entrypoint.sh

10 lines
169 B
Bash
Raw Normal View History

#!/bin/bash
# We use this file to translate environmental variables to .env files used by the application
set -e
node ./docker-entrypoint.js > ./config.js
2020-08-23 04:27:05 +08:00
exec "$@"