aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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": [