feat: install curl
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 22:40:23 +02:00
parent d115d57129
commit a38906466e
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

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