summaryrefslogtreecommitdiff
path: root/scripts/build_sandbox.js
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-06-16 08:27:29 -0700
committerGitHub <[email protected]>2025-06-16 15:27:29 +0000
commitdf938d6ee833ded59f6d12528105e6165ed76a92 (patch)
tree712b82037a378b74f5fd68ed5b06f1aae56a88c9 /scripts/build_sandbox.js
parenta600588c200f85e9f3bfe46ef7f836387e7349e5 (diff)
Preflight and integration npx (#1096)
Diffstat (limited to 'scripts/build_sandbox.js')
-rw-r--r--scripts/build_sandbox.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build_sandbox.js b/scripts/build_sandbox.js
index 59177e8f..c6a16c23 100644
--- a/scripts/build_sandbox.js
+++ b/scripts/build_sandbox.js
@@ -107,7 +107,7 @@ function buildImage(imageName, dockerfile) {
const buildCommand =
sandboxCommand === 'podman'
? `${sandboxCommand} build --authfile=<(echo '{}')`
- : `${sandboxCommand} --config=".docker" buildx build`;
+ : `${sandboxCommand} build`;
const npmPackageVersion = JSON.parse(
readFileSync(join(process.cwd(), 'package.json'), 'utf-8'),