From 0354eefe76ba5852c283bcca934ebded887ea9bb Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:16:41 +0200 Subject: [PATCH] fix: make hbase-entrypoint.sh executable --- hbase/Dockerfile | 2 +- hbase/stackable/bin/hbase-entrypoint.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 hbase/stackable/bin/hbase-entrypoint.sh diff --git a/hbase/Dockerfile b/hbase/Dockerfile index 7b9db6c3e..28c41da49 100644 --- a/hbase/Dockerfile +++ b/hbase/Dockerfile @@ -140,7 +140,7 @@ ARG DELETE_CACHES="true" # does not work, so please ignore the according warning (SC2016). COPY --chown=${STACKABLE_USER_UID}:0 hbase/stackable/bin/hbck2.env /stackable/bin/ COPY --chown=${STACKABLE_USER_UID}:0 hbase/stackable/patches /stackable/patches -COPY --chown=${STACKABLE_USER_UID}:0 hbase/stackable/bin/hbase-entrypoint.sh /stackable/bin/ +COPY --chown=${STACKABLE_USER_UID}:0 --chmod u+x hbase/stackable/bin/hbase-entrypoint.sh /stackable/bin/ USER ${STACKABLE_USER_UID} WORKDIR /stackable diff --git a/hbase/stackable/bin/hbase-entrypoint.sh b/hbase/stackable/bin/hbase-entrypoint.sh old mode 100644 new mode 100755