From 61dea7bebfb790027c5faa47e0a79436e61907e0 Mon Sep 17 00:00:00 2001 From: Nadezhda Fedorova Date: Thu, 7 Nov 2024 11:25:46 +0300 Subject: [PATCH] update images info --- images-info.toml | 4 ++++ org/alt/php/Dockerfile.template | 11 +++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/images-info.toml b/images-info.toml index 7a44573..0146e88 100644 --- a/images-info.toml +++ b/images-info.toml @@ -6,3 +6,7 @@ skip-arches = [ "386" ] ["alt/ansible"] skip-branches = [ "c10f2", "c10f1", "p10" ] + +["alt/systemd"] +skip-arches = [ "loongarch64" ] + diff --git a/org/alt/php/Dockerfile.template b/org/alt/php/Dockerfile.template index 7d4bf25..321b93a 100644 --- a/org/alt/php/Dockerfile.template +++ b/org/alt/php/Dockerfile.template @@ -8,7 +8,14 @@ LABEL org.opencontainers.image.source="https://github.com/php/php-src" LABEL org.opencontainers.image.licenses="PHP-3.01" LABEL org.opencontainers.image.vendor="ALT Linux Team" +{% if branch == 'p10' %} {{ install_packages( -"php8.2", -"php8.2-xdebug", + "php8.2", + "php8.2-xdebug", ) }} +{% else %} +{{ install_packages( + "php8.3", + "php8.3-xdebug", +) }} +{% endif %}