use base-image 1.0.41 and add files to .dockerignore
This commit is contained in:
@@ -1,34 +1,28 @@
|
|||||||
#Ignore documentation and license files
|
#Ignore documentation, license files temporary files
|
||||||
INSTALL.txt
|
INSTALL.txt
|
||||||
LICENSE.txt
|
LICENSE.txt
|
||||||
README.md
|
README.md
|
||||||
Rakefile
|
Rakefile
|
||||||
apiary.apib
|
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
|
# Ignore development and testing files
|
||||||
.env
|
.env
|
||||||
env_unittest.sh
|
env_unittest.sh
|
||||||
phpunit.xml
|
phpunit.xml
|
||||||
behat.yml.dist
|
behat.yml.dist
|
||||||
|
|
||||||
tests/
|
tests/
|
||||||
features/
|
features/
|
||||||
patch/
|
patch/
|
||||||
docker/
|
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/
|
shared/
|
||||||
database/
|
|
||||||
|
|
||||||
# Ignore any other files that are not needed in the image
|
# Ignore any other files that are not needed in the image
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# 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.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
|
# Set the working directory
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
<VirtualHost *:80>
|
|
||||||
ServerName 127.0.0.1
|
|
||||||
|
|
||||||
DocumentRoot /example/path/to/processmaker/workflow/public_html
|
|
||||||
DirectoryIndex index.html index.php
|
|
||||||
|
|
||||||
<Directory /example/path/to/processmaker/workflow/public_html>
|
|
||||||
Options Indexes FollowSymLinks MultiViews
|
|
||||||
AllowOverride All
|
|
||||||
Order allow,deny
|
|
||||||
Allow from all
|
|
||||||
Require all granted
|
|
||||||
|
|
||||||
ExpiresActive On
|
|
||||||
|
|
||||||
<IfModule mod_rewrite.c>
|
|
||||||
RewriteEngine On
|
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
|
||||||
RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
|
|
||||||
</IfModule>
|
|
||||||
</Directory>
|
|
||||||
</VirtualHost>
|
|
||||||
Reference in New Issue
Block a user