Use buildx build explicitly instead of alias

Fixes #12
This commit is contained in:
Joshua M. Boniface
2024-04-01 01:24:54 -04:00
parent 48897fad0c
commit 044737dfd1

View File

@@ -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"