We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c540829 commit 943d7bcCopy full SHA for 943d7bc
1 file changed
rust/boil/src/build/bakefile.rs
@@ -324,7 +324,9 @@ impl Bakefile {
324
args.strip_architecture,
325
);
326
327
- let dockerfile = PathBuf::new().join(&image_name).join("Dockerfile");
+ let dockerfile = PathBuf::new()
328
+ .join(&image_name)
329
+ .join(&args.target_containerfile);
330
331
let target_name = if is_entry {
332
Self::format_entry_target_name(&image_name, &image_version)
@@ -525,7 +527,6 @@ impl BakefileTarget {
525
527
}
526
528
529
fn image_version_annotation(image_version: &str, sdp_image_version: &Version) -> Vec<String> {
- // Annotations describe OCI image components.
530
vec![
531
// TODO (@Techassi): Move this version formatting into a function
532
// TODO (@Techassi): Make this vendor agnostic, don't hard-code stackable here
0 commit comments