fix dockerfile

This commit is contained in:
johnongit
2021-12-11 15:41:08 +01:00
committed by Christian Decker
parent 73bf4b2c2e
commit 52b1f5a8f4

View File

@@ -79,7 +79,9 @@ RUN git clone --recursive /tmp/lightning . && \
ARG DEVELOPER=0
ENV PYTHON_VERSION=3
RUN pip3 install mrkd
RUN apt-get install -y --no-install-recommends python3-dev
RUN pip3 install -U pip && pip3 install -r requirements.lock
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install
FROM debian:buster-slim as final