From e4c80533e8d4244ffe1543647f259a20b7bad64e Mon Sep 17 00:00:00 2001 From: Fernando Ontiveros Date: Sat, 5 Apr 2025 18:34:48 +0000 Subject: [PATCH] adding docker files --- docker/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 40e6d204d..f4c7e0c0a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,10 +1,9 @@ # Use our base image -FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.9-php8.3 +FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.11-php8.3 # Set the working directory WORKDIR /code # Copy the application code from the current directory to /code in the image -COPY . . +COPY --chown=www-data:www-data . . -RUN chown -R www-data:www-data /code