From 3682da638055314602c21933d3df0b2cf0ecf1a1 Mon Sep 17 00:00:00 2001 From: Maddiaa0 <47148561+Maddiaa0@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:24:24 +0000 Subject: [PATCH] fix: curl in the earthfile too --- aztec-nargo/Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aztec-nargo/Earthfile b/aztec-nargo/Earthfile index 49a32e4a3b4d..50952b30b8c3 100644 --- a/aztec-nargo/Earthfile +++ b/aztec-nargo/Earthfile @@ -4,7 +4,7 @@ run: FROM ubuntu:noble # Install Tini as nargo doesn't handle signals properly. # Install git as nargo needs it to clone. - RUN apt-get update && apt-get install -y git tini jq && rm -rf /var/lib/apt/lists/* && apt-get clean + RUN apt-get update && apt-get install -y git tini jq curl && rm -rf /var/lib/apt/lists/* && apt-get clean # Copy binaries to /usr/bin COPY ../noir+nargo/nargo /usr/bin/nargo