From fb3d3916ef346d964bdce6bf40bc46053f737282 Mon Sep 17 00:00:00 2001 From: dena Date: Fri, 31 Oct 2025 14:36:54 +0100 Subject: [PATCH 1/3] fix dependencies --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e52dd7..845e906 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,10 @@ LABEL org.opencontainers.image.source="https://github.com/wbstack/quickstatement RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \ - libasprintf0v5=0.21-12 \ - jq=1.6-2.1 \ - libicu-dev=72.1-3 \ - icu-devtools=72.1-3 && \ + libasprintf0v5 \ + jq \ + libicu-dev \ + icu-devtools && \ rm -rf /var/lib/apt/lists/* && \ docker-php-ext-configure intl && \ docker-php-ext-install intl && \ From 5d6727eac63a7cf2f436df7cc8f90d3a4a38721f Mon Sep 17 00:00:00 2001 From: dena Date: Fri, 31 Oct 2025 14:45:56 +0100 Subject: [PATCH 2/3] pin versions --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 845e906..18de004 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,10 @@ LABEL org.opencontainers.image.source="https://github.com/wbstack/quickstatement RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \ - libasprintf0v5 \ - jq \ - libicu-dev \ - icu-devtools && \ + libasprintf0v5=0.23.1-2 \ + jq=1.7.1-6 \ + libicu-dev=76.1-4 \ + icu-devtools=76.1-4 && \ rm -rf /var/lib/apt/lists/* && \ docker-php-ext-configure intl && \ docker-php-ext-install intl && \ From 1dcbd293793020712eeb75a455071e5c93a3f990 Mon Sep 17 00:00:00 2001 From: dena Date: Fri, 31 Oct 2025 14:54:00 +0100 Subject: [PATCH 3/3] fix jq version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18de004..ef01583 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ LABEL org.opencontainers.image.source="https://github.com/wbstack/quickstatement RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \ libasprintf0v5=0.23.1-2 \ - jq=1.7.1-6 \ + jq=1.7.1-6+deb13u1 \ libicu-dev=76.1-4 \ icu-devtools=76.1-4 && \ rm -rf /var/lib/apt/lists/* && \