feat: update image
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-02-03 20:26:52 +01:00
parent d28a24b855
commit 6948b19b79
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -12,7 +12,18 @@ async fn main() -> eyre::Result<()> {
let service = RustService::from(client) let service = RustService::from(client)
.with_arch(Architecture::Amd64) .with_arch(Architecture::Amd64)
.with_os(Os::Linux) .with_os(Os::Linux)
.with_apt(&["clang", "libssl-dev", "libz-dev", "libgit2-dev"]) .with_apt(&[
"clang",
"libssl-dev",
"libz-dev",
"libgit2-dev",
"git",
"openssh-client",
])
.with_apt_release(&["git", "openssh-client"])
.with_docker_cli()
.with_cuddle_cli()
.with_kubectl()
.with_apt_ca_certificates() .with_apt_ca_certificates()
.with_crates(["ci", "crates/*"]) .with_crates(["ci", "crates/*"])
.with_mold("2.3.3") .with_mold("2.3.3")