From 985a678dcc4ae5112edd81dabbce314568e8fe36 Mon Sep 17 00:00:00 2001 From: Maddiaa <47148561+Maddiaa0@users.noreply.github.com> Date: Tue, 26 Nov 2024 18:42:16 +0800 Subject: [PATCH] fix: aztec-nargo curl in the earthfile also (#10199) --- aztec-nargo/Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aztec-nargo/Earthfile b/aztec-nargo/Earthfile index 49a32e4a3b4..50952b30b8c 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