Skip to content

Commit

Permalink
docker: Install some missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shesek committed Apr 23, 2020
1 parent 1b99581 commit fedd680
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion arm32v7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion arm64v8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fedd680

Please sign in to comment.