diff --git a/src/dockerService.js b/src/dockerService.js index 36291cd..c7542fe 100644 --- a/src/dockerService.js +++ b/src/dockerService.js @@ -597,7 +597,8 @@ class DockerService { } } - async runHelper({ binds, cmd, onOutput }) { await this.ensureImage(); + async runHelper({ binds, cmd, onOutput, maxOkExitCode = 0 }) { + await this.ensureImage(); const container = await this.docker.createContainer({ Image: this.helperImage,