#!/bin/sh set -e [ $$ -eq 1 ] && exec dumb-init -- "$0" "$@" [ -f /root/init.sh ] && [ -x /root/init.sh ] && /root/init.sh cd /root if [ $# -gt 0 ]; then "$@" else bash --login -l fi