From a7e78e49a11e3d848e240417de4a4aad63e2d3f2 Mon Sep 17 00:00:00 2001 From: marun Date: Tue, 1 Oct 2024 08:11:54 -0700 Subject: [PATCH] [antithesis] Add curl to antithesis images (#3433) --- tests/antithesis/avalanchego/Dockerfile.node | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/antithesis/avalanchego/Dockerfile.node b/tests/antithesis/avalanchego/Dockerfile.node index 25dd82ead892..e73d9c17ff13 100644 --- a/tests/antithesis/avalanchego/Dockerfile.node +++ b/tests/antithesis/avalanchego/Dockerfile.node @@ -13,6 +13,9 @@ RUN ./scripts/build.sh -r # ============= Cleanup Stage ================ FROM debian:11-slim AS execution +# Install curl to simplify debugging +RUN apt update && apt install curl -y + # Copy identifying information into the container COPY --from=builder /build/commit_hash.txt ./commit_hash.txt