From db7d44818d67bf3977ed8c4edc573a90f9dd9657 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 8 Nov 2023 16:12:29 +0100 Subject: [PATCH] set path to app.sh explicit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b76af37..d493cd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY app.sh /app/app.sh WORKDIR /app # Make the script executable -RUN chmod +x app.sh +RUN chmod +x /app/app.sh # Set the entrypoint to execute the script ENTRYPOINT ["/app/app.sh"]