add dockerignore and using last baseimage
This commit is contained in:
38
.dockerignore
Normal file
38
.dockerignore
Normal 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
|
||||||
@@ -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.37-php8.3
|
FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.38-php8.3
|
||||||
|
|
||||||
# Set the working directory
|
# Set the working directory
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
|
|||||||
Reference in New Issue
Block a user