HI I am using Docker with symfony project inside that It checks for libreoffice. I am getting the below eeror and response code is 500.
"libreoffice is not executable at /usr/bin/libreoffice"
if (!is_executable($this->libreOffice)) {
            $logger->critical(sprintf('[ReportTemplateService][error] libreoffice is not executable at %s', $this->libreOffice));
            throw new \Exception(sprintf('libreoffice is not executable at %s', $this->libreOffice));
        }
        $this->twigEngine = $twigEngine;
        $this->logger = $logger; 
Can anyone help me out here.
 
    