Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions hello-world/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 <<EOF
microdnf update
microdnf clean all
Expand Down
1 change: 1 addition & 0 deletions hello-world/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
{
"product": "0.0.1-SNAPSHOT",
"java-base": "17",
"stackable-base": "1.0.0",
},
]
Loading