From 2c4b0d975efa43034dc0877bb1ae6cf814f5d265 Mon Sep 17 00:00:00 2001 From: Ingo Gottwald Date: Fri, 5 Oct 2018 21:12:11 +0200 Subject: [PATCH] Update Go version to 1.11.1 in Docker build script Restic cannot be built with Go 1.8.3 any more, it requires at least Go 1.9.0. --- docker/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build.sh b/docker/build.sh index ded3e6016..18ce44f97 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -5,7 +5,7 @@ set -e echo "Build binary using golang docker image" docker run --rm -ti \ -v `pwd`:/go/src/github.com/restic/restic \ - -w /go/src/github.com/restic/restic golang:1.8.3-alpine go run build.go + -w /go/src/github.com/restic/restic golang:1.11.1-alpine go run build.go echo "Build docker image restic/restic:latest" docker build --rm -t restic/restic:latest -f docker/Dockerfile .