From 8edd351f27dc382b253899b155f4d96d0ab23c3a Mon Sep 17 00:00:00 2001 From: Kyriakos Z <3829551+koox00@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:30:02 +0300 Subject: [PATCH] Fixes kerberos version not found (#20998) * Fixes kerberos version not found docker-build fails in CI because the following versions are not found. - libkrb5support0=1.17-3+deb10u3 - libk5crypto3=1.17-3+deb10u3 - libkrb5-3=1.17-3+deb10u3 - libgssapi-krb5-2=1.17-3+deb10u3 --- build/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 9ad11d9272..90c15906c4 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -31,10 +31,10 @@ RUN apt-get update \ ucf=3.0038+nmu1 \ openssl=1.1.1n-0+deb10u3 \ libkeyutils1=1.6-6 \ - libkrb5support0=1.17-3+deb10u3 \ - libk5crypto3=1.17-3+deb10u3 \ - libkrb5-3=1.17-3+deb10u3 \ - libgssapi-krb5-2=1.17-3+deb10u3 \ + libkrb5support0=1.17-3+deb10u4 \ + libk5crypto3=1.17-3+deb10u4 \ + libkrb5-3=1.17-3+deb10u4 \ + libgssapi-krb5-2=1.17-3+deb10u4 \ libnghttp2-14=1.36.0-2+deb10u1 \ libpsl5=0.20.2-2 \ librtmp1=2.4+20151223.gitfa8646d.1-2 \