Files
hastebin-ansi/docker-entrypoint.sh
2023-01-21 14:29:26 +01:00

10 lines
171 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.json
exec "$@"