From 2542a00c65a08e224145effa104697f765cf3d8b Mon Sep 17 00:00:00 2001 From: Siddharth Khatsuriya Date: Tue, 17 Aug 2021 23:30:09 +0530 Subject: [PATCH] executing entrypoint sh with bash --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef8517c..0cfd0c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,4 @@ RUN curl -o kustomize.tar.gz -L https://github.com/kubernetes-sigs/kustomize/rel COPY entrypoint.sh /entrypoint.sh # Code file to execute when the docker container starts up (`entrypoint.sh`) -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["bash","/entrypoint.sh"] \ No newline at end of file