fix: custom dockerfile location always checked

This commit is contained in:
Andras Bacsai 2024-02-26 14:26:19 +01:00
parent af3c575d84
commit 91632f0adb

View File

@ -118,6 +118,10 @@ public function __construct(int $application_deployment_queue_id)
$this->restart_only = $this->application_deployment_queue->restart_only;
$this->only_this_server = $this->application_deployment_queue->only_this_server;
if (data_get($this->application, 'dockerfile_location')) {
$this->dockerfile_location = $this->application->dockerfile_location;
}
$this->git_type = data_get($this->application_deployment_queue, 'git_type');
$source = data_get($this->application, 'source');
@ -425,9 +429,6 @@ private function deploy_dockerfile_buildpack()
if ($this->use_build_server) {
$this->server = $this->build_server;
}
if (data_get($this->application, 'dockerfile_location')) {
$this->dockerfile_location = $this->application->dockerfile_location;
}
$this->application_deployment_queue->addLogEntry("Starting deployment of {$this->customRepository}:{$this->application->git_branch} to {$this->server->name}.");
$this->prepare_builder_image();
$this->check_git_if_build_needed();