Skip to content

Commit a3a70fe

Browse files
committed
chore: move docker build args in front of build options in signature
1 parent 6458910 commit a3a70fe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/BuildProcess/BuildContainerImage.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ public function __invoke()
106106
$this->appPath,
107107
Manifest::name(),
108108
$this->environment,
109-
$this->cliBuildOptions,
110-
$this->formatBuildArguments()
109+
$this->formatBuildArguments(),
110+
$this->cliBuildOptions
111111
);
112112
}
113113

src/Docker.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ class Docker
1414
* @param string $path
1515
* @param string $project
1616
* @param string $environment
17-
* @param array $cliBuildOptions
1817
* @param array $cliBuildArgs
18+
* @param array $cliBuildOptions
1919
* @return void
2020
*/
21-
public static function build($path, $project, $environment, $cliBuildOptions, $cliBuildArgs)
21+
public static function build($path, $project, $environment, $cliBuildArgs, $cliBuildOptions)
2222
{
2323
$buildCommand = static::buildCommand(
2424
$project,

0 commit comments

Comments
 (0)