using last base image to fix issue with javascript workers

This commit is contained in:
Fernando Ontiveros
2025-07-10 07:31:26 -04:00
parent 90d9515075
commit b0c0d8d70c
2 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,5 @@
# Use our base image # Use our base image
# FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.33-php8.3 FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.51-php8.3
FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.50-php8.3
# Set the working directory # Set the working directory
WORKDIR /code WORKDIR /code

View File

@@ -62,7 +62,7 @@ try {
$view = new PhtmlView($rootDir . "framework/src/templates/error.phtml"); $view = new PhtmlView($rootDir . "framework/src/templates/error.phtml");
$view->set("title", "Installation Required"); $view->set("title", "Installation Required");
$view->set("message", "Please run lurana-installer to use the software. \n\nIf you've already run it, there might be an issue. \nPlease contact support."); $view->set("message", "Please run lurana-installer to use the software. \n\nIf you've already run it, there might be an issue. \nPlease contact support.");
$view->set("exception", $e); $view->set("exception", $e);
$response = new Response($view->getOutput(), 403); $response = new Response($view->getOutput(), 403);
$response->send(); $response->send();
} catch (Exception $e) { } catch (Exception $e) {