docker: add jq tool to Docker image so we can parse lncli output (#4259)

add jq tool to Docker image so we can parse lncli output
This commit is contained in:
Olaoluwa Osuntokun 2020-05-07 16:22:15 -07:00 committed by GitHub
commit 6c828f7ef0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.