From 70c130ae626f7c58d9e5ac0eed8977f51696fcbd Mon Sep 17 00:00:00 2001 From: Ismail Alidzhikov Date: Fri, 15 Mar 2019 19:48:30 +0200 Subject: [PATCH] Update versions (#1218) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7408df80352b..34adc2f90cdf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image # Also used as the image in CI jobs so needs all dependencies #################################################################################################### -FROM golang:1.11.4 as builder +FROM golang:1.11.5 as builder RUN apt-get update && apt-get install -y \ git \ @@ -41,7 +41,7 @@ RUN curl -sLo- https://github.com/alecthomas/gometalinter/releases/download/v${G #################################################################################################### FROM debian:9.6-slim as argoexec-base # NOTE: keep the version synced with https://storage.googleapis.com/kubernetes-release/release/stable.txt -ENV KUBECTL_VERSION=1.13.1 +ENV KUBECTL_VERSION=1.13.4 RUN apt-get update && \ apt-get install -y curl jq procps git tar mime-support && \ rm -rf /var/lib/apt/lists/* && \