Update Go version to 1.15 in Docker build script

This commit is contained in:
J0WI 2020-09-20 15:42:12 +00:00 committed by GitHub
parent 1cfb01a8a6
commit 090a73f7c5
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.14.6-alpine go run build.go
-w /go/src/github.com/restic/restic golang:1.15-alpine go run build.go
echo "Build docker image restic/restic:latest"
docker build --rm -t restic/restic:latest -f docker/Dockerfile .