Merge pull request #2352 from Shlomog/claude/romantic-dirac-2d077b

fix(container-runner): raise install_packages build timeout to 15min
This commit is contained in:
gavrielc
2026-05-09 16:27:53 +03:00
committed by GitHub
+1 -1
View File
@@ -530,7 +530,7 @@ export async function buildAgentGroupImage(agentGroupId: string): Promise<void>
execSync(`${CONTAINER_RUNTIME_BIN} build -t ${imageTag} -f ${tmpDockerfile} .`, {
cwd: DATA_DIR,
stdio: 'pipe',
timeout: 300_000,
timeout: 900_000,
});
} finally {
fs.unlinkSync(tmpDockerfile);