Tweak Docker image for PHP 8

This commit is contained in:
Frédéric Guillot 2022-02-09 20:07:45 -08:00
parent 4bf3b0d459
commit fc16d00687
4 changed files with 11 additions and 12 deletions

View File

@ -5,6 +5,7 @@
.idea .idea
.DS_Store .DS_Store
.htaccess .htaccess
.vscode
*.lock *.lock
*.md *.md
*.js *.js
@ -17,7 +18,6 @@ tests
ChangeLog ChangeLog
composer.json composer.json
Dockerfile Dockerfile
Dockerfile.*
Makefile Makefile
Vagrantfile Vagrantfile
web.config web.config

4
.gitattributes vendored
View File

@ -7,15 +7,13 @@ app/constants.php export-subst
docker export-ignore docker export-ignore
Dockerfile export-ignore Dockerfile export-ignore
Dockerfile.* export-ignore
docker-compose.yml export-ignore docker-compose.yml export-ignore
Makefile export-ignore Makefile export-ignore
README.md export-ignore README.md export-ignore
SECURITY.md export-ignore
Vagrantfile export-ignore Vagrantfile export-ignore
data/*.sqlite export-ignore data/*.sqlite export-ignore
tests export-ignore tests export-ignore
CONTRIBUTING export-ignore
app.json export-ignore
composer.json export-ignore composer.json export-ignore
composer.lock export-ignore composer.lock export-ignore

1
.gitignore vendored
View File

@ -4,6 +4,7 @@
.project .project
/.settings/ /.settings/
.idea .idea
.vscode
/nbproject/ /nbproject/
.DS_Store .DS_Store
ehthumbs.db ehthumbs.db

View File

@ -1,15 +1,15 @@
expose_php = Off expose_php = Off
error_reporting = E_ALL error_reporting = E_ALL
display_errors = Off display_errors = stderr
log_errors = On log_errors = 1
error_log = /dev/stderr error_log = /dev/stderr
date.timezone = UTC date.timezone = UTC
allow_url_fopen = On allow_url_fopen = 1
post_max_size = 32M post_max_size = 32M
upload_max_filesize = 32M upload_max_filesize = 32M
opcache.max_accelerated_files = 7963 opcache.enable = 1
opcache.validate_timestamps = Off opcache.enable_cli = 1
opcache.save_comments = 0 opcache.save_comments = 0
opcache.load_comments = 0 opcache.enable_file_override = 1
opcache.fast_shutdown = 1 opcache.jit_buffer_size = 100M
opcache.enable_file_override = On opcache.jit = tracing