From dcff77b63a88642d9b3f4e071298674d008a4825 Mon Sep 17 00:00:00 2001 From: Lightning Koala <1495499+LightningK0ala@users.noreply.github.com> Date: Wed, 18 Sep 2019 12:29:40 +0100 Subject: [PATCH] Update go version to 1.13 New go minimum version required is 1.13 as per [this change](https://github.com/lightningnetwork/lnd/pull/34589). Docker build will fail due to missing trimpath. --- docker/lnd/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/lnd/Dockerfile b/docker/lnd/Dockerfile index c8c3f91e..2d5c4ef0 100644 --- a/docker/lnd/Dockerfile +++ b/docker/lnd/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.12-alpine as builder +FROM golang:1.13-alpine as builder MAINTAINER Olaoluwa Osuntokun