2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-30 15:40:50 +00:00

Merge pull request #2939 from J0WI/patch-1

Update Go version to 1.15 in Docker build script
This commit is contained in:
MichaelEischer 2020-09-21 21:46:33 +02:00 committed by GitHub
commit 16f31b2f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 .