From fedd680e1d1d5974e4a476a6cb1fb04e196f28b2 Mon Sep 17 00:00:00 2001 From: Nadav Ivgi Date: Thu, 23 Apr 2020 01:17:08 +0300 Subject: [PATCH] docker: Install some missing dependencies --- Dockerfile | 2 +- arm32v7.Dockerfile | 2 +- arm64v8.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e013c3d9..5a5dfb8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG STANDALONE ENV STANDALONE=$STANDALONE # Install build c-lightning for third-party packages (c-lightning/bitcoind) -RUN apt-get update && apt-get install -y --no-install-recommends git \ +RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates gpg dirmngr wget \ $([ -n "$STANDALONE" ] || echo "autoconf automake build-essential gettext libtool libgmp-dev \ libsqlite3-dev python python3 python3-mako wget zlib1g-dev") diff --git a/arm32v7.Dockerfile b/arm32v7.Dockerfile index 436d9cc0..3e7ef6c9 100644 --- a/arm32v7.Dockerfile +++ b/arm32v7.Dockerfile @@ -4,7 +4,7 @@ ARG DEVELOPER ENV STANDALONE=1 # Install build c-lightning for third-party packages (c-lightning/bitcoind) -RUN apt-get update && apt-get install -y --no-install-recommends git \ +RUN apt-get update && apt-get install -y --no-install-recommends git wget ca-certificates \ qemu qemu-user-static qemu-user binfmt-support RUN npm config set unsafe-perm true diff --git a/arm64v8.Dockerfile b/arm64v8.Dockerfile index 887c4b4b..06c9e7ae 100644 --- a/arm64v8.Dockerfile +++ b/arm64v8.Dockerfile @@ -4,7 +4,7 @@ ARG DEVELOPER ENV STANDALONE=1 # Install build c-lightning for third-party packages (c-lightning/bitcoind) -RUN apt-get update && apt-get install -y --no-install-recommends git \ +RUN apt-get update && apt-get install -y --no-install-recommends git wget ca-certificates \ qemu qemu-user-static qemu-user binfmt-support RUN npm config set unsafe-perm true