add dockerignore and using last baseimage

This commit is contained in:
Fernando Ontiveros
2025-07-01 20:07:12 -04:00
parent cc65fc7e69
commit 5cbaaf4687
2 changed files with 39 additions and 1 deletions

38
.dockerignore Normal file
View File

@@ -0,0 +1,38 @@
#Ignore documentation and license files
INSTALL.txt
LICENSE.txt
README.md
Rakefile
apiary.apib
# 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
*.tmp
*.bak
*.swp
.DS_Store

View File

@@ -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.37-php8.3
FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.38-php8.3
# Set the working directory
WORKDIR /code