Skip to content

Commit

Permalink
Fix docker build args
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Apr 17, 2023
1 parent c3b3f91 commit 5517af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function handle()
new ExtractVendorToSeparateDirectory($this->argument('environment')),
new CompressApplication($this->argument('environment')),
new CompressVendor($this->argument('environment')),
new BuildContainerImage($this->argument('environment'), $this->option('build-arg')),
new BuildContainerImage($this->argument('environment'), $this->option('build-arg'), Manifest::dockerBuildArgs($this->argument('environment'))),
])->each->__invoke();

$time = (new DateTime())->diff($startedAt)->format('%im%Ss');
Expand Down

0 comments on commit 5517af1

Please sign in to comment.