From 9dce1c5a34c7b9d7d7d60aafb1fb5d03561b47dc Mon Sep 17 00:00:00 2001 From: Tornado Contrib <164305046+tornadocontrib@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:47:36 +0000 Subject: [PATCH] Add CURL on Dockerfile.release (#13418) Closes https://github.com/erigontech/erigon/issues/13417 --- Dockerfile.release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.release b/Dockerfile.release index efefdae90f9..5f89d78a40c 100644 --- a/Dockerfile.release +++ b/Dockerfile.release @@ -95,7 +95,7 @@ ARG USER=erigon \ EXPOSED_PORTS RUN --mount=type=bind,from=ci-cd-main-branch-builder,source=/build-${TARGETARCH},target=/tmp/erigon \ - apk add --no-cache ca-certificates tzdata libstdc++ && \ + apk add --no-cache curl ca-certificates tzdata libstdc++ && \ addgroup ${GROUP} && \ adduser -D -h /home/${USER} -G ${GROUP} ${USER} && \ install -d -o ${USER} -g ${GROUP} /home/${USER}/.local /home/${USER}/.local/share /home/${USER}/.local/share/erigon && \