From a38906466e2e33b1a789da22c23ce80e531c53fd Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 6 Apr 2024 22:40:23 +0200 Subject: [PATCH] feat: install curl Signed-off-by: kjuulh --- crates/cuddle-ci/src/rust_service/dagger_bin.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/cuddle-ci/src/rust_service/dagger_bin.rs b/crates/cuddle-ci/src/rust_service/dagger_bin.rs index 4570208..a6f9d16 100644 --- a/crates/cuddle-ci/src/rust_service/dagger_bin.rs +++ b/crates/cuddle-ci/src/rust_service/dagger_bin.rs @@ -39,6 +39,8 @@ impl DaggerMiddleware for DaggerBin { }, ) .with_env_variable("DAGGER_VERSION", &self.version) + .with_exec(vec!["apt", "update", "-y"]) + .with_exec(vec!["apt", "install", "curl", "-y"]) .with_exec(vec!["/mnt/install.sh"]) .file("/bin/dagger");