Browse Source
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.
pull/287/head
Tom Dickman
7 months ago
No known key found for this signature in database
GPG Key ID: C885385D2534EF87
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|