#!/bin/sh set -e if [ "$DEV" = 1 ]; then /usr/local/bin/init-dev.sh else /usr/local/bin/init-prod.sh fi exec "$@"