From bd3e046fb7cc61db74e6d65f6636c81dc40fbbb8 Mon Sep 17 00:00:00 2001 From: Yancy Ribbens Date: Sat, 1 Dec 2018 22:53:14 -0600 Subject: [PATCH] fix dockerfile dependency bug --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 047c5c03..6420086b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,10 @@ FROM golang:alpine as builder ENV GODEBUG netdns=cgo # Install dependencies and build the binaries. -RUN apk add --no-cache \ +RUN apk add --no-cache --update alpine-sdk \ git \ make \ + gcc \ && git clone https://github.com/lightningnetwork/lnd /go/src/github.com/lightningnetwork/lnd \ && cd /go/src/github.com/lightningnetwork/lnd \ && make \