From d37498c0806530ed716a602e9bdc1fb9e631fcaa Mon Sep 17 00:00:00 2001 From: yorickdowne <71337066+yorickdowne@users.noreply.github.com> Date: Thu, 7 Mar 2024 18:10:42 -0500 Subject: [PATCH] Add wget to Besu (#1779) --- besu/Dockerfile.binary | 2 +- besu/Dockerfile.source | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/besu/Dockerfile.binary b/besu/Dockerfile.binary index 6e7d9c43..1c8404b5 100644 --- a/besu/Dockerfile.binary +++ b/besu/Dockerfile.binary @@ -17,7 +17,7 @@ USER root RUN groupmod -g "${GID}" besu && usermod -u "${UID}" -g "${GID}" besu RUN set -eux; \ - apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y gosu ca-certificates tzdata git; \ + apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y gosu ca-certificates tzdata git wget; \ rm -rf /var/lib/apt/lists/*; \ # verify that the binary works gosu nobody true diff --git a/besu/Dockerfile.source b/besu/Dockerfile.source index 7034b9f4..988445e5 100644 --- a/besu/Dockerfile.source +++ b/besu/Dockerfile.source @@ -27,6 +27,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install gosu \ libjemalloc-dev \ git \ + wget \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*