aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-12-05 22:20:57 +0100
committerGravatar GitHub <noreply@github.com> 2025-12-05 22:20:57 +0100
commit2e5435205124d578af3e846a51f80ec4f1ee2555 (patch)
treea72882f36e9aa30fc4aeb51c59a9442af30ff5d9
parent9a3945487811f95f19b77ecc9e82428182263d36 (diff)
Docker: Alpine 3.23 (#8285)
https://alpinelinux.org/posts/Alpine-3.23.0-released.html PHP 8.4.15, Apache/2.4.65 Dev Container updated from PHP 8.3.x to PHP 8.4.x.
-rw-r--r--.devcontainer/Dockerfile2
-rw-r--r--.dockerignore1
-rw-r--r--Docker/Dockerfile-Alpine2
-rw-r--r--composer.json4
4 files changed, 5 insertions, 4 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index a8d8e8a19..3db323983 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,4 +1,4 @@
-FROM alpine:3.22
+FROM alpine:3.23
ENV TZ=UTC
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
diff --git a/.dockerignore b/.dockerignore
index afdf186f1..599951f82 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -7,4 +7,5 @@
/extensions/node_modules/
/extensions/vendor/
/node_modules/
+/tests/**/*.sqlite
/vendor/
diff --git a/Docker/Dockerfile-Alpine b/Docker/Dockerfile-Alpine
index 7546b35da..0307d580e 100644
--- a/Docker/Dockerfile-Alpine
+++ b/Docker/Dockerfile-Alpine
@@ -1,4 +1,4 @@
-FROM alpine:3.22
+FROM alpine:3.23
ENV TZ=UTC
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
diff --git a/composer.json b/composer.json
index 05faa7088..356e288bc 100644
--- a/composer.json
+++ b/composer.json
@@ -68,8 +68,8 @@
"phtml-lint": "find . -type d -name 'vendor' -prune -o -name '*.phtml' -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null",
"phpcs": "phpcs . -s",
"phpcbf": "phpcbf . -p -s",
- "phpstan": "phpstan analyse .",
- "phpstan-next": "phpstan analyse -c phpstan-next.neon .",
+ "phpstan": "phpstan analyse --memory-limit 256M .",
+ "phpstan-next": "phpstan analyse --memory-limit 256M -c phpstan-next.neon .",
"phpunit": "phpunit --bootstrap ./tests/bootstrap.php --display-notices --display-phpunit-deprecations ./tests",
"translations": "cli/manipulate.translation.php --action format && cli/check.translation.php --generate-readme",
"test": [