From 8c5161e16a37b701529ca635c0998d0aab23ced8 Mon Sep 17 00:00:00 2001 From: Elizabeth Engelman <4752801+elizabethengelman@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:30:33 -0500 Subject: [PATCH] Install libdbus-1-dev for cli this is a dependency for keyring, which we're using for signing with keychains/secure store --- Dockerfile.soroban-cli | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.soroban-cli b/Dockerfile.soroban-cli index 38bf2e3..3338f9f 100644 --- a/Dockerfile.soroban-cli +++ b/Dockerfile.soroban-cli @@ -6,6 +6,7 @@ FROM $DOCKERHUB_RUST_VERSION AS builder WORKDIR /soroban-tools COPY . . +run apt update && apt install -y libdbus-1-dev run if [ ! -z "$SOROBAN_CLI_CRATE_VERSION" ]; then \ cargo install \ --config net.git-fetch-with-cli=true \