diff --git a/crates/cuddle-ci/src/rust_service/dagger_bin.rs b/crates/cuddle-ci/src/rust_service/dagger_bin.rs index 3a63b4a..72c5995 100644 --- a/crates/cuddle-ci/src/rust_service/dagger_bin.rs +++ b/crates/cuddle-ci/src/rust_service/dagger_bin.rs @@ -29,7 +29,7 @@ impl DaggerMiddleware for DaggerBin { let dagger_bin = self .client .container() - .from("debian:bookworm") + .from("alpine") .with_file_opts( "/mnt/install.sh", install_script, @@ -39,8 +39,6 @@ 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");