diff options
| author | Olcan <[email protected]> | 2025-06-10 08:58:37 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-10 08:58:37 -0700 |
| commit | e38d2078cc70b0453ef70523a8ad38279941aca2 (patch) | |
| tree | b5a4024d1c006a2d116631ac7a51bb5b0eaf34a6 /scripts/build_sandbox.js | |
| parent | 895c1f132f9d1cc88bd56584e461fd22a5f23394 (diff) | |
restricted networking for all sandboxing methods, new seatbelt profiles, updated docs, fixes to sandbox build, debugging through sandbox (#891)
Diffstat (limited to 'scripts/build_sandbox.js')
| -rw-r--r-- | scripts/build_sandbox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build_sandbox.js b/scripts/build_sandbox.js index bfcf1bf9..89e186fa 100644 --- a/scripts/build_sandbox.js +++ b/scripts/build_sandbox.js @@ -111,7 +111,7 @@ function buildImage(imageName, dockerfile) { execSync( `${buildCommand} ${process.env.BUILD_SANDBOX_FLAGS || ''} -f "${dockerfile}" -t "${imageName}" .`, - { stdio: buildStdout }, + { stdio: buildStdout, shell: '/bin/bash' }, ); console.log(`built ${imageName}`); } |
