diff --git a/images/full/Dockerfile b/images/full/Dockerfile index 9dd9658..6174c00 100644 --- a/images/full/Dockerfile +++ b/images/full/Dockerfile @@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y \ docker.io \ docker-buildx \ docker-compose-v2 \ + nodejs \ && rm -rf /var/lib/apt/lists/* # Download and install kubectl matching the target architecture diff --git a/images/slim/Dockerfile b/images/slim/Dockerfile index b351820..6b7925d 100644 --- a/images/slim/Dockerfile +++ b/images/slim/Dockerfile @@ -11,7 +11,8 @@ RUN apk add --no-cache \ openssh-client \ ca-certificates \ tar \ - gzip + gzip \ + nodejs # Download and install kubectl matching the target architecture RUN KUBE_VER=$(curl -L -s https://dl.k8s.io/release/stable.txt) && \