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");