core-lightning/contrib/docker/Dockerfile.alpine
Rusty Russell 50056ce918 doc: remove mrkd requirement, add lowdown requirement.
I guessed it's called "lowdown" for everyone?

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-09-08 00:36:51 +03:00

22 lines
667 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 lowdown #&& \
#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"]