From f58158cb46dc735bffafba91546a1cc529781ce3 Mon Sep 17 00:00:00 2001 From: Fernando Ontiveros Date: Wed, 2 Jul 2025 16:53:13 -0400 Subject: [PATCH] use base-image 1.0.41 and add files to .dockerignore --- .dockerignore | 24 +++++++++--------------- docker/Dockerfile | 2 +- pmos.conf.example | 22 ---------------------- 3 files changed, 10 insertions(+), 38 deletions(-) delete mode 100644 pmos.conf.example diff --git a/.dockerignore b/.dockerignore index a7e7a4dce..c11301378 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,34 +1,28 @@ -#Ignore documentation and license files +#Ignore documentation, license files temporary files INSTALL.txt LICENSE.txt README.md Rakefile apiary.apib +build-vendor.php +build.xml +# package-lock.json +# package.json +gulpfile.js +webpack.config.js +webpack.mix.js # Ignore development and testing files .env env_unittest.sh phpunit.xml behat.yml.dist + tests/ features/ patch/ docker/ - -# Ignore build artifacts and temporary files -node_modules/ -build-vendor.php -build.xml -package-lock.json -package.json -gulpfile.js -webpack.config.js -webpack.mix.js - -# Ignore large directories that are not needed in production -resources/ shared/ -database/ # Ignore any other files that are not needed in the image *.log diff --git a/docker/Dockerfile b/docker/Dockerfile index 297fd48cc..3a94037cf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ # 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.38-php8.3 +FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.42-php8.3 # Set the working directory WORKDIR /code diff --git a/pmos.conf.example b/pmos.conf.example deleted file mode 100644 index a592ed0bc..000000000 --- a/pmos.conf.example +++ /dev/null @@ -1,22 +0,0 @@ - - ServerName 127.0.0.1 - - DocumentRoot /example/path/to/processmaker/workflow/public_html - DirectoryIndex index.html index.php - - - Options Indexes FollowSymLinks MultiViews - AllowOverride All - Order allow,deny - Allow from all - Require all granted - - ExpiresActive On - - - RewriteEngine On - RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^.*/(.*)$ app.php [QSA,L,NC] - - -