From 2136d5912f08dd8dd5589844de45dbc919220089 Mon Sep 17 00:00:00 2001 From: briancolecoinmetrics <70967635+briancolecoinmetrics@users.noreply.github.com> Date: Fri, 7 Oct 2022 11:26:37 -0400 Subject: [PATCH] update package dependencies for Alpine Linux Alpine no longer has a `python` (2) package, which is fine because it doesn't seem to be needed. Also, the listed commands didn't result in all needed dependencies being installed for runtime, so I've added that in an additional step. --- doc/INSTALL.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/INSTALL.md b/doc/INSTALL.md index c4b318593..5d76b7b2a 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -446,7 +446,7 @@ Get dependencies: ``` apk update apk add ca-certificates alpine-sdk autoconf automake git libtool \ - gmp-dev sqlite-dev python python3 py3-mako net-tools zlib-dev libsodium gettext + gmp-dev sqlite-dev python3 py3-mako net-tools zlib-dev libsodium gettext ``` Clone lightning: ``` @@ -466,6 +466,10 @@ cd .. && rm -rf lightning apk del ca-certificates alpine-sdk autoconf automake git libtool \ gmp-dev sqlite python3 py3-mako net-tools zlib-dev libsodium gettext ``` +Install runtime dependencies: +``` +apk add gmp libgcc libsodium sqlite-libs zlib +``` Additional steps --------------------