Files
azure-image-chooser/app/entrypoint.sh

9 lines
105 B
Bash
Executable File

#!/bin/sh
if [ "$1" = "-s" ] || [ "$1" = "--shell" ]; then
shift
exec bash $@
fi
exec streamlit $@