From df8c66050719310bdb0dd307b4f0707afa508575 Mon Sep 17 00:00:00 2001 From: kcs-bandihareesh <106671992+kcs-bandihareesh@users.noreply.github.com> Date: Tue, 19 Aug 2025 14:17:41 +0530 Subject: [PATCH 1/2] Upgrade OIDC to 2.4.17.2 --- apache-oidc/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apache-oidc/Dockerfile b/apache-oidc/Dockerfile index d292382..8d4ca56 100644 --- a/apache-oidc/Dockerfile +++ b/apache-oidc/Dockerfile @@ -4,8 +4,8 @@ FROM httpd:2.4.65@sha256:fbc12199ccad031d8047e9c789d65aceee2d14f99ba90664cd3a399 RUN apt-get update \ && apt-get install -y --no-install-recommends wget ca-certificates libcjose0 libhiredis0.14 apache2-api-20120211 apache2-bin libldap-2.5-0 libssl3 libldap-common \ && apt-get check \ - && wget https://github.com/OpenIDC/mod_auth_openidc/releases/download/v2.4.17.1/libapache2-mod-auth-openidc_2.4.17.1-1.bookworm_amd64.deb \ - && dpkg -i libapache2-mod-auth-openidc_2.4.17.1-1.bookworm_amd64.deb \ + && wget https://github.com/OpenIDC/mod_auth_openidc/releases/download/v2.4.17.2/libapache2-mod-auth-openidc_2.4.17.2-1.bookworm_amd64.deb \ + && dpkg -i libapache2-mod-auth-openidc_2.4.17.2-1.bookworm_amd64.deb \ && ln -s /usr/lib/apache2/modules/mod_auth_openidc.so /usr/local/apache2/modules/mod_auth_openidc.so \ #&& rm -rf /var/log/dpkg.log /var/log/alternatives.log /var/log/apt \ && touch /usr/local/apache2/conf/extra/secret.conf \ From fe42c3bad7510cd2845ef7508440e92a18874506 Mon Sep 17 00:00:00 2001 From: kcs-bandihareesh Date: Fri, 3 Apr 2026 17:34:13 +0530 Subject: [PATCH 2/2] Upgrade OIDC to v2.4.19.2 and Updated Apache SHA ID for 2.4.66 --- apache-oidc/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apache-oidc/Dockerfile b/apache-oidc/Dockerfile index 77ba49f..9f6b1db 100644 --- a/apache-oidc/Dockerfile +++ b/apache-oidc/Dockerfile @@ -1,11 +1,11 @@ -FROM httpd:2.4.66@sha256:b89c19a390514d6767e8c62f29375d0577190be448f63b24f5f11d6b03f7bf18 -# "Created": "2026-02-03T02:23:05.137173969Z" , "Version":"2.4.66", VERSION="13 (trixie)" +FROM httpd:2.4.66@sha256:331548c5249bdeced0f048bc2fb8c6b6427d2ec6508bed9c1fec6c57d0b27a60 +# "Created": "2026-03-16T22:23:01.522892039Z" , "Version":"2.4.66", VERSION="13 (trixie)" RUN apt-get update \ && apt-get install -y --no-install-recommends wget ca-certificates libcjose0 libhiredis1.1.0 apache2-api-20120211 apache2-bin libldap2 libssl3 libldap-common \ && apt-get check \ - && wget https://github.com/OpenIDC/mod_auth_openidc/releases/download/v2.4.19.1/libapache2-mod-auth-openidc_2.4.19.1-1.trixie_amd64.deb \ - && dpkg -i libapache2-mod-auth-openidc_2.4.19.1-1.trixie_amd64.deb \ + && wget https://github.com/OpenIDC/mod_auth_openidc/releases/download/v2.4.19.2/libapache2-mod-auth-openidc_2.4.19.2-1.trixie_amd64.deb \ + && dpkg -i libapache2-mod-auth-openidc_2.4.19.2-1.trixie_amd64.deb \ && ln -s /usr/lib/apache2/modules/mod_auth_openidc.so /usr/local/apache2/modules/mod_auth_openidc.so \ #&& rm -rf /var/log/dpkg.log /var/log/alternatives.log /var/log/apt \ && touch /usr/local/apache2/conf/extra/secret.conf \