#!/bin/bash set -eu -o pipefail init_root() { set -eu # nothing to do here for now? } main() { set -eu init_root /home/$AGORA_USER/agora-server/entrypoint.sh # tail -f /dev/null } main