core-lightning/contrib/docker/Dockerfile.alpine

36 lines
705 B
Docker
Raw Normal View History

FROM alpine:3.16
LABEL org.opencontainers.image.authors="Vincenzo Palazzo (@vincenzopalazzo) vincenzopalazzodev@gmail.com"
WORKDIR /build
RUN apk update && \
apk add \
alpine-sdk \
autoconf \
automake \
ca-certificates \
gettext \
git \
gmp-dev \
libsodium \
libtool \
net-tools \
py3-mako \
python3 \
sqlite-dev \
su-exec \
zlib-dev
RUN mkdir lightning
COPY . lightning
RUN cd lightning && \
git submodule update --init --recursive && \
./configure && \
make -j$(nproc) && \
make install
# TODO: review entry point here, to make this availale for the user
CMD ["lightningd", "--version"]