From 4bcd56fbae7ebc550b35de3acfc36ca17accfb3f Mon Sep 17 00:00:00 2001 From: iambryancs Date: Fri, 17 Jan 2020 02:13:11 +0800 Subject: [PATCH] Update Go version to 1.13.6 in Docker build script --- docker/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build.sh b/docker/build.sh index 54c0b1bf7..354908d19 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.11.1-alpine go run build.go + -w /go/src/github.com/restic/restic golang:1.13.6-alpine go run build.go echo "Build docker image restic/restic:latest" docker build --rm -t restic/restic:latest -f docker/Dockerfile .