dagger-rs/crates/dagger-sdk/examples/publish-the-application/main.rs

52 lines
1.3 KiB
Rust
Raw Normal View History

use dagger_sdk::HostDirectoryOpts;
2023-02-17 17:29:23 +01:00
use rand::Rng;
fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect()?;
2023-02-17 17:29:23 +01:00
let output = "examples/publish-the-application/app/build";
let host_source_dir = client.host().directory(
"examples/publish-the-application/app",
2023-02-17 17:29:23 +01:00
Some(HostDirectoryOpts {
exclude: Some(vec!["node_modules", "ci/"]),
2023-02-17 17:29:23 +01:00
include: None,
marker: std::marker::PhantomData,
2023-02-17 17:29:23 +01:00
}),
);
let source = client
.container(None)
.from("node:16")
.with_mounted_directory("/src", host_source_dir.id()?);
2023-02-17 17:29:23 +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:29:23 +01:00
let _ = test
.with_exec(vec!["npm", "run", "build"], None)
.directory("./build")
.export(output);
2023-02-17 17:29:23 +01:00
let mut rng = rand::thread_rng();
let ref_ = client
.container(None)
.from("nginx")
2023-02-17 17:29:23 +01:00
.with_directory(
"/usr/share/nginx/html",
client.host().directory(output, None).id()?,
2023-02-17 17:29:23 +01:00
None,
)
.publish(
format!("ttl.sh/hello-dagger-rs-{}:1h", rng.gen::<u64>()),
None,
)?;
2023-02-17 17:29:23 +01:00
println!("published image to: {}", ref_);
Ok(())
}