From 090a73f7c5de21d743b3dc8a04ee000e48884886 Mon Sep 17 00:00:00 2001
From: J0WI <J0WI@users.noreply.github.com>
Date: Sun, 20 Sep 2020 15:42:12 +0000
Subject: [PATCH] Update Go version to 1.15 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 bbfdcd88a..6a411a324 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.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 .