Skip to content

Commit

Permalink
fix: don't put a timeout when running docker build command
Browse files Browse the repository at this point in the history
  • Loading branch information
carlalexander committed Dec 27, 2024
1 parent b720095 commit b5d4f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Executable/DockerExecutable.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class DockerExecutable extends AbstractExecutable
*/
public function build(string $file, string $tag, ?string $cwd = null)
{
$this->run(sprintf('build --pull --file=%s --tag=%s .', $file, $tag), $cwd);
$this->run(sprintf('build --pull --file=%s --tag=%s .', $file, $tag), $cwd, null);
}

/**
Expand Down

0 comments on commit b5d4f4d

Please sign in to comment.