mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-10-31 19:11:21 +00:00
9 lines
169 B
Bash
9 lines
169 B
Bash
#!/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
|
|
|
|
exec "$@"
|