From 7e11fa119341c8d84cd2e4962dad2da8208a62b1 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 15 Jul 2019 07:04:02 +0200 Subject: [PATCH] Update Docker version. --- .semaphoreci/setup.sh | 2 +- build.Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.semaphoreci/setup.sh b/.semaphoreci/setup.sh index 9eeec0b10..c32e3cdf0 100755 --- a/.semaphoreci/setup.sh +++ b/.semaphoreci/setup.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -export DOCKER_VERSION=17.03.1 +export DOCKER_VERSION=18.09.7 source .semaphoreci/vars diff --git a/build.Dockerfile b/build.Dockerfile index 1be0e5fa0..23774dd0d 100644 --- a/build.Dockerfile +++ b/build.Dockerfile @@ -10,7 +10,7 @@ RUN go get golang.org/x/lint/golint \ && go get github.com/client9/misspell/cmd/misspell # Which docker version to test on -ARG DOCKER_VERSION=17.03.2 +ARG DOCKER_VERSION=18.09.7 ARG DEP_VERSION=0.5.1 # Download go-bindata binary to bin folder in $GOPATH @@ -25,7 +25,7 @@ RUN mkdir -p /usr/local/bin \ # Download docker RUN mkdir -p /usr/local/bin \ - && curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}-ce.tgz \ + && curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz \ | tar -xzC /usr/local/bin --transform 's#^.+/##x' WORKDIR /go/src/github.com/containous/traefik