diff --git a/Dockerfile b/Dockerfile index 21c352d4a..d8e6e8887 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \ FROM debian:stretch-slim as builder ENV LIGHTNINGD_VERSION=master -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential git libtool python python3 python3-mako wget gnupg dirmngr git gettext +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential git libtool python3 python3-mako wget gnupg dirmngr git gettext RUN wget -q https://zlib.net/zlib-1.2.11.tar.gz \ && tar xvf zlib-1.2.11.tar.gz \ diff --git a/contrib/Dockerfile.builder b/contrib/Dockerfile.builder index e55b96066..ac8166bbf 100644 --- a/contrib/Dockerfile.builder +++ b/contrib/Dockerfile.builder @@ -24,7 +24,6 @@ RUN apt-get -qq update && \ libsqlite3-dev \ libgmp-dev \ git \ - python \ python3 \ valgrind \ net-tools \ diff --git a/contrib/Dockerfile.builder.fedora b/contrib/Dockerfile.builder.fedora index aafa1648e..4a43c033e 100644 --- a/contrib/Dockerfile.builder.fedora +++ b/contrib/Dockerfile.builder.fedora @@ -11,7 +11,6 @@ RUN dnf update -y && \ clang \ gmp-devel \ libsq3-devel \ - python2-devel \ python3-devel \ python3-mako \ python3-pip \ diff --git a/contrib/linuxarm32v7.Dockerfile b/contrib/linuxarm32v7.Dockerfile index baa9789ca..1075d9d95 100644 --- a/contrib/linuxarm32v7.Dockerfile +++ b/contrib/linuxarm32v7.Dockerfile @@ -48,7 +48,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \ FROM debian:stretch-slim as builder ENV LIGHTNINGD_VERSION=master -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python python3 python3-mako wget gnupg dirmngr git \ +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-mako wget gnupg dirmngr git \ libc6-armhf-cross gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf ENV target_host=arm-linux-gnueabihf diff --git a/contrib/linuxarm64v8.Dockerfile b/contrib/linuxarm64v8.Dockerfile index b3fa78197..fb2ca4f93 100644 --- a/contrib/linuxarm64v8.Dockerfile +++ b/contrib/linuxarm64v8.Dockerfile @@ -48,7 +48,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \ FROM debian:stretch-slim as builder ENV LIGHTNINGD_VERSION=master -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python python3 python3-mako wget gnupg dirmngr git \ +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-mako wget gnupg dirmngr git \ libc6-arm64-cross gcc-aarch64-linux-gnu g++-aarch64-linux-gnu ENV target_host=aarch64-linux-gnu diff --git a/doc/INSTALL.md b/doc/INSTALL.md index b450ff2cc..8a200bb25 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -36,7 +36,7 @@ Get dependencies: sudo apt-get update sudo apt-get install -y \ autoconf automake build-essential git libtool libgmp-dev \ - libsqlite3-dev python python3 python3-mako net-tools zlib1g-dev libsodium-dev \ + libsqlite3-dev python3 python3-mako net-tools zlib1g-dev libsodium-dev \ gettext If you don't have Bitcoin installed locally you'll need to install that @@ -88,7 +88,6 @@ $ sudo dnf update -y && \ git \ gmp-devel \ libsq3-devel \ - python2-devel \ python3-devel \ python3-pip \ python3-setuptools \