#!/bin/bash # Best practice: Bash strict mode. set -euo pipefail # Best practice: Make sure the image shuts down correctly by using `exec` in # entry point shell scripts. exec "$@"