From d7df9c91dfae784536b7fdbd4c4220b493ebb72f Mon Sep 17 00:00:00 2001 From: Zandor Smith <info@zsinfo.nl> Date: Thu, 25 Jul 2024 16:24:48 +0200 Subject: [PATCH] Install bash. --- 1.29/Dockerfile | 2 +- 1.30/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/1.29/Dockerfile b/1.29/Dockerfile index 80072c7..94ff9d6 100644 --- a/1.29/Dockerfile +++ b/1.29/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:latest RUN apk update -RUN apk add --no-cache curl wget +RUN apk add --no-cache bash curl wget RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable-1.29.txt)/bin/linux/amd64/kubectl RUN chmod +x ./kubectl diff --git a/1.30/Dockerfile b/1.30/Dockerfile index 526ec68..77f0f23 100644 --- a/1.30/Dockerfile +++ b/1.30/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:latest RUN apk update -RUN apk add --no-cache curl wget +RUN apk add --no-cache bash curl wget RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable-1.30.txt)/bin/linux/amd64/kubectl RUN chmod +x ./kubectl -- GitLab