From 4625e8832a37e639f6833a36fc4705136c2b75d9 Mon Sep 17 00:00:00 2001 From: Ram <1331672+chukka@users.noreply.github.com> Date: Fri, 27 Nov 2020 16:48:28 +0530 Subject: [PATCH] Bump versions (#304) Signed-off-by: Ram <1331672+chukka@users.noreply.github.com> --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2437c6c9..e4e61246 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ RUN apk --no-cache add \ py3-pip \ py3-wheel \ python3 && \ - pip install --upgrade pip==20.2.3 + pip install --upgrade pip==20.2.4 # Install a YAML Linter -ARG yamllint_version=1.24.2 +ARG yamllint_version=1.25.0 LABEL yamllint_version=$yamllint_version RUN pip install "yamllint==$yamllint_version" @@ -22,7 +22,7 @@ LABEL yamale_version=$yamale_version RUN pip install "yamale==$yamale_version" # Install kubectl -ARG kubectl_version=v1.19.2 +ARG kubectl_version=v1.19.4 LABEL kubectl_version=$kubectl_version RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/linux/amd64/kubectl" && \ chmod +x kubectl && \