From 049f4fce5a9522b072115a6217585008c8bba75d Mon Sep 17 00:00:00 2001 From: MaxMustermann2 <82761650+MaxMustermann2@users.noreply.github.com> Date: Tue, 11 Feb 2025 09:39:32 +0000 Subject: [PATCH] fix(ci): downgrade curl Looks like `curl` has been downgraded in `alpine` repos --- Dockerfile | 2 +- networks/local/exocore/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67a5c18ec..34a1defaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN apk add --no-cache \ ca-certificates=20241121-r1 \ libstdc++~=13.2 \ jq~=1.7 \ - curl~=8.12 \ + curl~=8.11 \ bash~=5.2 \ && addgroup -g 1000 exocore \ && adduser -S -h /home/exocore -D exocore -u 1000 -G exocore diff --git a/networks/local/exocore/Dockerfile b/networks/local/exocore/Dockerfile index 6a4e40f55..c8e300d26 100644 --- a/networks/local/exocore/Dockerfile +++ b/networks/local/exocore/Dockerfile @@ -12,7 +12,7 @@ RUN LEDGER_ENABLED=false make build FROM alpine:3.19 AS run RUN apk add --no-cache libstdc++~=13.2 \ bash~=5.2 \ - curl~=8.12 \ + curl~=8.11 \ jq~=1.7 \ && addgroup -g 1000 exocore \ && adduser -S -h /home/exocore -D exocore -u 1000 -G exocore