Quellcode durchsuchen

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.
Alexandre Alapetite vor 3 Monaten
Ursprung
Commit
2e54352051
4 geänderte Dateien mit 5 neuen und 4 gelöschten Zeilen
  1. 1 1
      .devcontainer/Dockerfile
  2. 1 0
      .dockerignore
  3. 1 1
      Docker/Dockerfile-Alpine
  4. 2 2
      composer.json

+ 1 - 1
.devcontainer/Dockerfile

@@ -1,4 +1,4 @@
-FROM alpine:3.22
+FROM alpine:3.23
 
 ENV TZ=UTC
 SHELL ["/bin/ash", "-eo", "pipefail", "-c"]

+ 1 - 0
.dockerignore

@@ -7,4 +7,5 @@
 /extensions/node_modules/
 /extensions/vendor/
 /node_modules/
+/tests/**/*.sqlite
 /vendor/

+ 1 - 1
Docker/Dockerfile-Alpine

@@ -1,4 +1,4 @@
-FROM alpine:3.22
+FROM alpine:3.23
 
 ENV TZ=UTC
 SHELL ["/bin/ash", "-eo", "pipefail", "-c"]

+ 2 - 2
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": [