feat: move to user local bin
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-04-06 23:04:06 +02:00
parent 556cb152e8
commit 82a7b7e9b1
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -44,14 +44,14 @@ impl DaggerMiddleware for DaggerBin {
Ok(container
.with_file_opts(
"/bin/dagger",
"/usr/local/bin/dagger",
dagger_bin,
dagger_sdk::ContainerWithFileOpts {
owner: None,
permissions: Some(0755),
},
)
.with_exec(vec!["/bin/dagger", "version"]))
.with_exec(vec!["/usr/local/bin/dagger", "version"]))
}
}