From 3c3f73531fcca12af5992223166b468bb752b0ad Mon Sep 17 00:00:00 2001 From: lispmeister Date: Thu, 7 May 2020 15:28:12 +0400 Subject: [PATCH] add jq tool to Docker image so we can parse lncli output --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 12c6ece65..f7d4fb55c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,9 +26,10 @@ FROM alpine as final # Define a root volume for data persistence. VOLUME /root/.lnd -# Add bash and ca-certs, for quality of life and SSL-related reasons. +# Add bash, jq and ca-certs, for quality of life and SSL-related reasons. RUN apk --no-cache add \ bash \ + jq \ ca-certificates # Copy the binaries from the builder image.