From 044737dfd1efb900d0be6d5af9d1f69e79c2d14c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 1 Apr 2024 01:24:54 -0400 Subject: Use buildx build explicitly instead of alias Fixes #12 --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.py') diff --git a/build.py b/build.py index 0f75b34..2780526 100755 --- a/build.py +++ b/build.py @@ -19,7 +19,7 @@ revparse = run(["git", "rev-parse", "--show-toplevel"], stdout=PIPE) repo_root_dir = revparse.stdout.decode().strip() # Base Docker commands -docker_build_cmd = "docker build --progress=plain --no-cache" +docker_build_cmd = "docker buildx build --progress=plain --no-cache" docker_run_cmd = "docker run --rm" -- cgit