From 1dd3d9b85c9c711d17725b234b287e8fd0f9ed05 Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Mon, 13 Jul 2026 21:24:43 -0300 Subject: [PATCH] fixing image files --- images/full/Dockerfile | 1 + images/slim/Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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) && \