mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-12 20:21:52 +01:00
kjuulh
19ed6c267f
this means that you can now use dagger_sdk::connect() instead of dagger_sdk::client::connect();
24 lines
513 B
Rust
24 lines
513 B
Rust
use rand::Rng;
|
|
|
|
fn main() -> eyre::Result<()> {
|
|
let mut rng = rand::thread_rng();
|
|
|
|
let client = dagger_sdk::connect()?;
|
|
|
|
let context_dir = client
|
|
.host()
|
|
.directory("./examples/existing-dockerfile/app".into(), None);
|
|
|
|
let ref_ = client
|
|
.container(None)
|
|
.build(context_dir.id()?, None)
|
|
.publish(
|
|
format!("ttl.sh/hello-dagger-rs-{}:1h", rng.gen::<u64>()),
|
|
None,
|
|
)?;
|
|
|
|
println!("published image to: {}", ref_);
|
|
|
|
Ok(())
|
|
}
|