Skip to content

Commit e95eb47

Browse files
committed
Removes redundant quotes around Docker entrypoint
Updates the Docker command generation to omit unnecessary quotes around the entrypoint parameter. This ensures compatibility with Docker CLI syntax and eliminates potential issues caused by misinterpreted quotes.
1 parent 42424be commit e95eb47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MultiFlexi/Executor/Docker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function cmdparams()
5757
$params = $this->job->getCmdParams();
5858
$ociimage = $this->job->application->getDataValue('ociimage');
5959

60-
return 'run --env-file '.$this->envFile().' --entrypoint "'.$entrypoint.'" '.$ociimage.' '.$params;
60+
return 'run --env-file '.$this->envFile().' --entrypoint '.$entrypoint.' '.$ociimage.' '.$params;
6161
}
6262

6363
public function envFile()

0 commit comments

Comments
 (0)