diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..675a4b8 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Run the authentication check first +/app/auth.sh + +# If authentication passes, run the application +if [ $? -eq 0 ]; then + make run +fi