test: copy docker build helper in setup e2e · openclaw/openclaw@3a8961a
steipete
·
2026-04-27
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -57,7 +57,16 @@ async function createDockerSetupSandbox(): Promise<DockerSetupSandbox> {
|
57 | 57 | const logPath = join(rootDir, "docker-stub.log"); |
58 | 58 | |
59 | 59 | await mkdir(join(rootDir, "scripts", "docker"), { recursive: true }); |
| 60 | +await mkdir(join(rootDir, "scripts", "lib"), { recursive: true }); |
60 | 61 | await copyFile(join(repoRoot, "scripts", "docker", "setup.sh"), scriptPath); |
| 62 | +await copyFile( |
| 63 | +join(repoRoot, "scripts", "lib", "docker-build.sh"), |
| 64 | +join(rootDir, "scripts", "lib", "docker-build.sh"), |
| 65 | +); |
| 66 | +await copyFile( |
| 67 | +join(repoRoot, "scripts", "lib", "docker-e2e-logs.sh"), |
| 68 | +join(rootDir, "scripts", "lib", "docker-e2e-logs.sh"), |
| 69 | +); |
61 | 70 | await chmod(scriptPath, 0o755); |
62 | 71 | await writeFile(dockerfilePath, "FROM scratch\n"); |
63 | 72 | await writeFile( |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。