mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-09 03:21:46 +01:00
45 lines
1.2 KiB
Rust
45 lines
1.2 KiB
Rust
use rand::Rng;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> eyre::Result<()> {
|
|
let client = dagger_sdk::connect().await?;
|
|
|
|
let host_source_dir = client.host().directory_opts(
|
|
"./examples/caching/app",
|
|
dagger_sdk::HostDirectoryOptsBuilder::default()
|
|
.exclude(vec!["node_modules/", "ci/"])
|
|
.build()?,
|
|
);
|
|
|
|
let node_cache = client.cache_volume("node").id().await?;
|
|
|
|
let source = client
|
|
.container()
|
|
.from("node:16")
|
|
.with_mounted_directory("/src", host_source_dir.id().await?)
|
|
.with_mounted_cache("/src/node_modules", node_cache);
|
|
|
|
let runner = source
|
|
.with_workdir("/src")
|
|
.with_exec(vec!["npm", "install"]);
|
|
|
|
let test = runner.with_exec(vec!["npm", "test", "--", "--watchAll=false"]);
|
|
|
|
let build_dir = test
|
|
.with_exec(vec!["npm", "run", "build"])
|
|
.directory("./build");
|
|
|
|
let mut rng = rand::thread_rng();
|
|
|
|
let ref_ = client
|
|
.container()
|
|
.from("nginx")
|
|
.with_directory("/usr/share/nginx/html", build_dir.id().await?)
|
|
.publish(format!("ttl.sh/hello-dagger-sdk-{}:1h", rng.gen::<u64>()))
|
|
.await?;
|
|
|
|
println!("published image to: {}", ref_);
|
|
|
|
Ok(())
|
|
}
|