Skip to content

Commit 4283689

Browse files
committed
feat(hello): provision the containerdebug binary
1 parent d27aec5 commit 4283689

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ All notable changes to this project will be documented in this file.
88

99
- nifi: Add NiFi hadoop Azure and GCP libraries ([#943]).
1010
- base: Add containerdebug tool ([#928]).
11+
- hello: Add containerdebug tool ([#950]).
1112

1213
[#928]: https://github.com/stackabletech/docker-images/pull/928
1314
[#943]: https://github.com/stackabletech/docker-images/pull/943
15+
[#950]: https://github.com/stackabletech/docker-images/pull/950
1416

1517
## [24.11.0] - 2024-11-18
1618

hello-world/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# syntax=docker/dockerfile:1.10.0@sha256:865e5dd094beca432e8c0a1d5e1c465db5f998dca4e439981029b3b81fb39ed5
22
# check=error=true
33

4+
FROM stackable/image/stackable-base AS stackable-base
5+
46
FROM stackable/image/java-base
57

68
ARG PRODUCT
@@ -15,6 +17,10 @@ LABEL name="Hello World" \
1517
summary="The Stackable image for the Stackable Hello World Operator" \
1618
description="This image is deployed by the Stackable Hello World Operator."
1719

20+
ENV HOME=/stackable
21+
22+
COPY --from=stackable-base --chown=${STACKABLE_USER_UID}:0 /stackable/ ${HOME}/
23+
1824
RUN <<EOF
1925
microdnf update
2026
microdnf clean all

hello-world/versions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
{
33
"product": "0.0.1-SNAPSHOT",
44
"java-base": "17",
5+
"stackable-base": "1.0.0",
56
},
67
]

0 commit comments

Comments
 (0)