Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
entrypoint.sh 234 B
#!/bin/sh -e

### Usage: /entrypoint.sh <command> <args>
set -e
command=$1

if [ "$command" == "serve" ]; then
  file="$2"
  gomplate -f "$file" -o "/etc/dex/config.yaml";
  exec dex serve "/etc/dex/config.yaml"
else
  exec dex $@
fi