Skip to content

Commit

Permalink
chore: Use containers/ directory as contextual for container builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vadorovsky committed Oct 27, 2024
1 parent 5eae47a commit a030931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/containers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub fn build_container_image(args: BuildContainerImageArgs) -> anyhow::Result<()
for tag in tags.iter() {
cmd.args([OsStr::new("-t"), tag]);
}
cmd.args([OsStr::new("-f"), &dockerfile, OsStr::new(".")])
cmd.args([OsStr::new("-f"), &dockerfile, OsStr::new("containers/")])
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
if no_cache {
Expand Down

0 comments on commit a030931

Please sign in to comment.