diff --git a/CHANGELOG.md b/CHANGELOG.md index 1904596b..8beee49c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file. ### Added +- hbase: check for correct permissions and ownerships in /stackable folder via + `check-permissions-ownership.sh` provided in stackable-base image ([#1028]). - spark-connect-client: A new image for Spark connect tests and demos ([#1034]) - nifi: check for correct permissions and ownerships in /stackable folder via `check-permissions-ownership.sh` provided in stackable-base image ([#1027]). @@ -16,11 +18,13 @@ All notable changes to this project will be documented in this file. ### Fixed +- hbase: reduce docker image size by removing the recursive chown/chmods in the final image ([#1028]). - nifi: reduce docker image size by removing the recursive chown/chmods in the final image ([#1027]). - spark-k8s: reduce docker image size by removing the recursive chown/chmods in the final image ([#1042]). - Add `--locked` flag to `cargo install` commands for reproducible builds ([#1044]). [#1027]: https://github.com/stackabletech/docker-images/pull/1027 +[#1028]: https://github.com/stackabletech/docker-images/pull/1028 [#1034]: https://github.com/stackabletech/docker-images/pull/1034 [#1042]: https://github.com/stackabletech/docker-images/pull/1042 [#1044]: https://github.com/stackabletech/docker-images/pull/1044 diff --git a/hbase/Dockerfile b/hbase/Dockerfile index ca80123c..587c933a 100644 --- a/hbase/Dockerfile +++ b/hbase/Dockerfile @@ -44,7 +44,7 @@ RUN --mount=type=cache,id=maven-hbase-${PRODUCT},uid=${STACKABLE_USER_UID},targe ### ### HBase ### -curl "https://repo.stackable.tech/repository/packages/hbase/hbase-${PRODUCT}-src.tar.gz" | tar -xzC . +curl --fail "https://repo.stackable.tech/repository/packages/hbase/hbase-${PRODUCT}-src.tar.gz" | tar -xzC . mv hbase-${PRODUCT} hbase-${PRODUCT}-src chmod +x patches/apply_patches.sh @@ -65,7 +65,7 @@ ln -s "/stackable/hbase-${PRODUCT}" /stackable/hbase ### JMX Prometheus Exporter/Agent ### if [[ -n "${JMX_EXPORTER}" ]] ; then - curl "https://repo.stackable.tech/repository/packages/jmx-exporter/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" -o "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" + curl --fail "https://repo.stackable.tech/repository/packages/jmx-exporter/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" -o "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" chmod +x "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" ln -s "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" /stackable/jmx/jmx_prometheus_javaagent.jar fi @@ -75,7 +75,7 @@ fi ### cd /stackable export ARCH="${TARGETARCH/amd64/x64}" -curl "https://repo.stackable.tech/repository/packages/async-profiler/async-profiler-${ASYNC_PROFILER}-${TARGETOS}-${ARCH}.tar.gz" | tar -xzC . +curl --fail "https://repo.stackable.tech/repository/packages/async-profiler/async-profiler-${ASYNC_PROFILER}-${TARGETOS}-${ARCH}.tar.gz" | tar -xzC . ln -s "/stackable/async-profiler-${ASYNC_PROFILER}-${TARGETOS}-${ARCH}" /stackable/async-profiler # We're removing these to make the intermediate layer smaller @@ -87,8 +87,12 @@ if [ "${DELETE_CACHES}" = "true" ] ; then rm -rf /stackable/.npm/* rm -rf /stackable/.cache/* fi + +# set correct groups +chmod --recursive g=u /stackable EOF + FROM stackable/image/java-devel AS opa-authorizer-builder ARG OPA_AUTHORIZER @@ -99,7 +103,6 @@ USER ${STACKABLE_USER_UID} WORKDIR /stackable RUN --mount=type=cache,id=maven-opa,uid=${STACKABLE_USER_UID},target=/stackable/.m2/repository < /stackable/bin/export-snapshot-to-s3 chmod +x /stackable/bin/export-snapshot-to-s3 rm /stackable/bin/export-snapshot-to-s3.env + +# set correct groups +chmod --recursive g=u /stackable EOF + FROM stackable/image/java-devel AS phoenix-builder ARG PRODUCT @@ -240,7 +253,7 @@ WORKDIR /stackable RUN --mount=type=cache,id=maven-phoenix-${PHOENIX},uid=${STACKABLE_USER_UID},target=/stackable/.m2/repository < /stackable/package_manifest.txt +chown ${STACKABLE_USER_UID}:0 /stackable/package_manifest.txt +chmod g=u /stackable/package_manifest.txt rm -rf /var/cache/yum ln --symbolic --logical --verbose "/stackable/hbase-${PRODUCT}" /stackable/hbase +chown --no-dereference ${STACKABLE_USER_UID}:0 /stackable/hbase +chmod g=u /stackable/hbase + ln --symbolic --logical --verbose "/stackable/hbase-operator-tools-${HBASE_OPERATOR_TOOLS}" /stackable/hbase-operator-tools -ln --symbolic --logical --verbose "/stackable/phoenix/phoenix-server-hbase-${HBASE_PROFILE}.jar" "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}.jar" +chown --no-dereference ${STACKABLE_USER_UID}:0 /stackable/hbase-operator-tools +chmod g=u /stackable/hbase-operator-tools -# All files and folders owned by root group to support running as arbitrary users. -# This is best practice as all container users will belong to the root group (0). -chown -R ${STACKABLE_USER_UID}:0 /stackable -chmod -R g=u /stackable +ln --symbolic --logical --verbose "/stackable/phoenix/phoenix-server-hbase-${HBASE_PROFILE}.jar" "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}.jar" +chown --no-dereference ${STACKABLE_USER_UID}:0 "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}.jar" +chmod g=u "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}.jar" + +# fix missing permissions +chmod g=u /stackable/async-profiler +chmod g=u /stackable/bin +chmod g=u /stackable/jmx +chmod g=u /stackable/phoenix +# the whole directory tree /stackable/hadoop/share/hadoop/tools/lib/ must be adapted +find /stackable/hadoop -type d -exec chmod g=u {} + EOF # ---------------------------------------- -# Attention: We are changing the group of all files in /stackable directly above -# If you do any file based actions (copying / creating etc.) below this comment you -# absolutely need to make sure that the correct permissions are applied! -# chown ${STACKABLE_USER_UID}:0 +# Checks +# This section is to run final checks to ensure the created final images +# adhere to several minimal requirements like: +# - check file permissions and ownerships +# ---------------------------------------- + +# Check that permissions and ownership in /stackable are set correctly +# This will fail and stop the build if any mismatches are found. +RUN <