From 067c1fe2291cf1147646bc95e52bac04006421e0 Mon Sep 17 00:00:00 2001 From: Cizz22 Date: Tue, 11 Mar 2025 14:13:13 +0700 Subject: [PATCH] fix --- entrypoint.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 entrypoint.sh 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