From cb6d3b11db14dc94b4bb5b5426ce41521e5ffe3d Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 8 Nov 2023 16:16:23 +0100 Subject: [PATCH] use CMD instead of Entrypoint --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d493cd1..6d10cde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,5 +17,4 @@ WORKDIR /app # Make the script executable RUN chmod +x /app/app.sh -# Set the entrypoint to execute the script -ENTRYPOINT ["/app/app.sh"] +CMD ["bash", "/app/app.sh"]