From f113076264b71e0423c2bcd642eb63851311e604 Mon Sep 17 00:00:00 2001 From: LuizSDCit <86307064+LuizSDCit@users.noreply.github.com> Date: Wed, 9 Mar 2022 14:30:27 -0300 Subject: [PATCH] fix: Guarantee the execution permission in the entrypoint.bash file (#149) * add a command to guarantee the execution permission * make more readable * remove the duplicate command --- modules/cloudbuild/cloudbuild_builder/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cloudbuild/cloudbuild_builder/Dockerfile b/modules/cloudbuild/cloudbuild_builder/Dockerfile index 3324942b..0549cd89 100644 --- a/modules/cloudbuild/cloudbuild_builder/Dockerfile +++ b/modules/cloudbuild/cloudbuild_builder/Dockerfile @@ -45,4 +45,5 @@ RUN apt-get update && \ ENV PATH=/builder/terraform/:$PATH COPY entrypoint.bash /builder/entrypoint.bash +RUN chmod +x /builder/entrypoint.bash ENTRYPOINT ["/builder/entrypoint.bash"]