dagger-rs/crates/dagger-sdk/examples/caching/main.rs

48 lines
1.2 KiB
Rust
Raw Normal View History

2023-02-17 17:40:46 +01:00
use rand::Rng;
fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect()?;
2023-02-17 17:40:46 +01:00
let host_source_dir = client.host().directory(
"./examples/caching/app",
Some(
dagger_sdk::HostDirectoryOptsBuilder::default()
.exclude(vec!["node_modules", "ci/"])
.build()?,
),
2023-02-17 17:40:46 +01:00
);
let node_cache = client.cache_volume("node").id()?;
2023-02-17 17:40:46 +01:00
let source = client
.container(None)
.from("node:16")
.with_mounted_directory("/src", host_source_dir.id()?)
.with_mounted_cache("/src/node_modules", node_cache, None);
2023-02-17 17:40:46 +01:00
let runner = source
.with_workdir("/src")
.with_exec(vec!["npm", "install"], None);
let test = runner.with_exec(vec!["npm", "test", "--", "--watchAll=false"], None);
2023-02-17 17:40:46 +01:00
let build_dir = test
.with_exec(vec!["npm", "run", "build"], None)
.directory("./build");
2023-02-17 17:40:46 +01:00
let mut rng = rand::thread_rng();
let ref_ = client
.container(None)
.from("nginx")
.with_directory("/usr/share/nginx/html", build_dir.id()?, None)
2023-02-17 17:40:46 +01:00
.publish(
format!("ttl.sh/hello-dagger-rs-{}:1h", rng.gen::<u64>()),
None,
)?;
2023-02-17 17:40:46 +01:00
println!("published image to: {}", ref_);
Ok(())
}