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
|
||||
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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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