diff --git a/CHANGELOG.md b/CHANGELOG.md index d2f7ce6eb..e3b2fa9f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,11 @@ All notable changes to this project will be documented in this file. - nifi: Add NiFi hadoop Azure and GCP libraries ([#943]). - base: Add containerdebug tool ([#928]). +- hello: Add containerdebug tool ([#950]). [#928]: https://github.com/stackabletech/docker-images/pull/928 [#943]: https://github.com/stackabletech/docker-images/pull/943 +[#950]: https://github.com/stackabletech/docker-images/pull/950 ## [24.11.0] - 2024-11-18 diff --git a/hello-world/Dockerfile b/hello-world/Dockerfile index 3a27047cf..c5152cde5 100644 --- a/hello-world/Dockerfile +++ b/hello-world/Dockerfile @@ -1,6 +1,8 @@ # syntax=docker/dockerfile:1.10.0@sha256:865e5dd094beca432e8c0a1d5e1c465db5f998dca4e439981029b3b81fb39ed5 # check=error=true +FROM stackable/image/stackable-base AS stackable-base + FROM stackable/image/java-base ARG PRODUCT @@ -15,6 +17,10 @@ LABEL name="Hello World" \ summary="The Stackable image for the Stackable Hello World Operator" \ description="This image is deployed by the Stackable Hello World Operator." +ENV HOME=/stackable + +COPY --from=stackable-base --chown=${STACKABLE_USER_UID}:0 /stackable/ ${HOME}/ + RUN <