#!/bin/sh # Steward container entrypoint. # # Drops from root to the 'app' user via gosu, then runs the command. # The container starts as root only so /data permissions can be fixed up # if needed before handing off to the unprivileged user. set -e exec gosu app "$@"