mirror of
https://github.com/lnbook/lnbook
synced 2024-11-06 21:20:29 +00:00
26 lines
442 B
Docker
26 lines
442 B
Docker
FROM ubuntu:18.04
|
|
|
|
# Install development tools prerequisites
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
libtool \
|
|
autotools-dev \
|
|
automake \
|
|
pkg-config \
|
|
python3 \
|
|
wget \
|
|
git \
|
|
curl \
|
|
unzip
|
|
|
|
|
|
# Install software-properties-common to add apt repositories
|
|
RUN apt-get install -y \
|
|
software-properties-common
|
|
|
|
|
|
# c-lightning
|
|
RUN add-apt-repository -u ppa:lightningnetwork/ppa
|
|
RUN apt-get install -y \
|
|
lightningd
|