core-lightning/contrib/docker/Dockerfile.alpine
Rusty Russell cde93ab703 doc: document that we can build lowdown, remove from Alpine.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-09-08 00:36:51 +03:00

22 lines
659 B
Text

FROM alpine:3.14.3
LABEL org.opencontainers.image.authors="Vincenzo Palazzo (@vincenzopalazzo) vincenzopalazzodev@gmail.com"
WORKDIR /build
RUN apk update && \
apk add ca-certificates alpine-sdk autoconf automake git libtool \
gmp-dev sqlite-dev python3 py3-mako net-tools zlib-dev libsodium gettext su-exec \
python3 py3-pip #&& \
#apk add --upgrade fortify-headers
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"]