Merge pull request #2552 from iambryancs/update-to-go1.13

Update Go version to 1.13.6 in Docker build script
This commit is contained in:
rawtaz 2020-02-07 15:24:37 +01:00 committed by GitHub
commit 0f22f008ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 .