missing done

This commit is contained in:
Andras Bacsai 2023-05-31 15:44:12 +02:00
parent 8991de2610
commit 4c40eedffb

View File

@ -167,6 +167,9 @@ class ApplicationDeploymentJob implements ShouldQueue
$this->execute_in_builder("cp {$this->workdir}/.nixpacks/Dockerfile {$this->workdir}/Dockerfile"), $this->execute_in_builder("cp {$this->workdir}/.nixpacks/Dockerfile {$this->workdir}/Dockerfile"),
$this->execute_in_builder("rm -f {$this->workdir}/.nixpacks/Dockerfile"), $this->execute_in_builder("rm -f {$this->workdir}/.nixpacks/Dockerfile"),
], isDebuggable: true); ], isDebuggable: true);
$this->execute_now([
"echo 'Done... '",
]);
} }
private function build_image() private function build_image()
{ {