From 2f6973296cb005520e9580bc696fe030e2e5a1a4 Mon Sep 17 00:00:00 2001 From: Tom Dickman Date: Fri, 4 Sep 2020 11:04:59 -0400 Subject: [PATCH] Upgrade docker image to golang 1.13 Building the docker image currently fails due to a module that requires a minimum golang version of 1.13. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 238443e..759f93d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.12-alpine as builder +FROM golang:1.13-alpine as builder # Copy in the local repository to build from. COPY . /go/src/github.com/lightningnetwork/loop