Skip to content

Commit 6c567cb

Browse files
committed
feat(installer/Dockerfile): switch to busybox base image
Signed-off-by: Vaughn Dice <[email protected]>
1 parent f0ca749 commit 6c567cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

images/installer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ COPY . .
1010
RUN CGO_ENABLED=0 go build -o rcm-node-installer ./cmd/node-installer
1111
RUN /app/rcm-node-installer -h
1212

13-
FROM scratch
13+
# Using busybox instead of scratch so that the nsenter utility is present, as used in restarter logic
14+
FROM busybox
1415
COPY --from=builder /app/rcm-node-installer /rcm-node-installer
1516

1617
ENTRYPOINT ["/rcm-node-installer"]

0 commit comments

Comments
 (0)