mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
docker: Add python3 to the docker image
Most user-contributed plugins are written in python, and not having it available in the docker image is rather annoying to work around. So we just add that tiny dependency to the image. Fixes #3765
This commit is contained in:
parent
a6374ad431
commit
324d39bb6b
@ -82,7 +82,7 @@ RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVE
|
||||
|
||||
FROM debian:stretch-slim as final
|
||||
COPY --from=downloader /opt/tini /usr/bin/tini
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends socat inotify-tools \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends socat inotify-tools python3 python3-pip \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV LIGHTNINGD_DATA=/root/.lightning
|
||||
|
Loading…
Reference in New Issue
Block a user