From d4555ba6d630df9b1bb1a88191f3b53a624d6698 Mon Sep 17 00:00:00 2001 From: Madhav Madhusoodanan Date: Tue, 25 Feb 2025 18:45:59 +0530 Subject: [PATCH] Fix: explicitly invoked CMD in dockerfile Signed-off-by: Madhav Madhusoodanan --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4b5924858ca4..fb407728b088 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,3 +89,7 @@ FROM chapel-base AS chapel COPY --from=chapel-build $CHPL_HOME $CHPL_HOME ENV PATH="${PATH}:${CHPL_HOME}/bin:${CHPL_HOME}/util" + +# Not relying on inherited CMD command in debian:11 base image. +# Instead, explicitly invoking it in this image. +CMD ["/bin/bash"]