From 45c20a9e65fe6a29b5ecad411b132e45f9ccde68 Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Fri, 25 Oct 2024 11:16:52 +0200 Subject: [PATCH] fix: hbase-entrypoint.sh chmod arg --- hbase/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase/Dockerfile b/hbase/Dockerfile index 28c41da49..d1cdc5ab6 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 --chmod u+x hbase/stackable/bin/hbase-entrypoint.sh /stackable/bin/ +COPY --chown=${STACKABLE_USER_UID}:0 --chmod=755 hbase/stackable/bin/hbase-entrypoint.sh /stackable/bin/ USER ${STACKABLE_USER_UID} WORKDIR /stackable