Fix incorrect shebang in example initialization script
The `/bin/bash` shebang points does not point to the correct path for bash in the container. Because of this, the initialization scripts will not run. Changing to `/usr/bin/env bash` fixes this problem.
Alternatively `/usr/bin/bash` would also work.