aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pipelines/docker-onap-k8s-toolbox/Dockerfile6
-rw-r--r--pipelines/docker-onap-k8s-toolbox/container-tag.yaml2
2 files changed, 4 insertions, 4 deletions
diff --git a/pipelines/docker-onap-k8s-toolbox/Dockerfile b/pipelines/docker-onap-k8s-toolbox/Dockerfile
index cdaf764a1..93c30bff6 100644
--- a/pipelines/docker-onap-k8s-toolbox/Dockerfile
+++ b/pipelines/docker-onap-k8s-toolbox/Dockerfile
@@ -1,4 +1,4 @@
-FROM alpine:latest
+FROM ubuntu:jammy
ARG KUBECTL_VERSION="v1.28.4"
ARG KUBECTL_URL="https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
@@ -9,7 +9,7 @@ ARG HELM_URL="https://get.helm.sh/${HELM_ARCHIVE}"
WORKDIR /root
-RUN apk add --no-cache git curl bash make \
+RUN apt-get update && apt-get install -y git curl make \
&& curl -L $KUBECTL_URL -o /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kubectl \
&& curl -L $HELM_URL -o $HELM_ARCHIVE \
@@ -17,4 +17,4 @@ RUN apk add --no-cache git curl bash make \
&& mv linux-amd64/helm /usr/local/bin/helm \
&& rm -rf linux-amd64 $HELM_ARCHIVE
-CMD ["/bin/sh"] \ No newline at end of file
+CMD ["/bin/bash"] \ No newline at end of file
diff --git a/pipelines/docker-onap-k8s-toolbox/container-tag.yaml b/pipelines/docker-onap-k8s-toolbox/container-tag.yaml
index a136a2452..e0bf6aaf3 100644
--- a/pipelines/docker-onap-k8s-toolbox/container-tag.yaml
+++ b/pipelines/docker-onap-k8s-toolbox/container-tag.yaml
@@ -1 +1 @@
-tag: "1.0.4"
+tag: "1.1.0"