From d151afe8735a2eac8e70a1322a19c54a0a392614 Mon Sep 17 00:00:00 2001 From: Akshay Kolli Date: Sun, 8 Feb 2026 03:23:01 -0500 Subject: [PATCH] updated docker to fix chmod --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65fa095..dff3da6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ ENV PORT 3000 # set hostname to localhost ENV HOSTNAME "0.0.0.0" -COPY start.sh ./ +COPY --chown=nextjs:nodejs start.sh ./ RUN chmod +x start.sh CMD ["./start.sh"]