From 11a03e9d4731f1127e6eef9cafe3a64bf9f5bca6 Mon Sep 17 00:00:00 2001 From: z-br Date: Sun, 22 Jun 2025 22:56:16 -0700 Subject: [PATCH] fix: force bash for setup.sh instead of nodejs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index edbc399..a7b3f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,4 +33,4 @@ RUN chmod +x ./setup.sh EXPOSE 3000 # Set the default command to run setup.sh -CMD ["./setup.sh"] \ No newline at end of file +CMD ["/bin/bash", "./setup.sh"]