mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-10 03:41:42 +01:00
kjuulh
9be6f435d9
Default to using async runtime instead of blocking. I.e. ```rust fn main() -> eyre::Result<()> { // ... client.container().from("rust").publish("somewhere")?; // ... } // to async fn main() -> eyre::Result<()> { // ... client.container().from("rust").publish("somewhere").await?; // ... } ```
22 lines
482 B
Rust
22 lines
482 B
Rust
use rand::Rng;
|
|
|
|
#[tokio::main]
|
|
async 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");
|
|
|
|
let ref_ = client
|
|
.container()
|
|
.build(context_dir.id().await?)
|
|
.publish(format!("ttl.sh/hello-dagger-rs-{}:1h", rng.gen::<u64>())).await?;
|
|
|
|
println!("published image to: {}", ref_);
|
|
|
|
Ok(())
|
|
}
|