mirror of
https://github.com/toptal/haste-server.git
synced 2024-11-14 10:35:18 +01:00
10 lines
169 B
Bash
10 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 "$@"
|