From e137231e71b7ba6266c56a916d69e4492ac6b2cd Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Wed, 30 Oct 2024 23:31:33 +0000 Subject: [PATCH] Keycloak: Add missing native library (#12666) This PR fixes the issue https://issues.oss-fuzz.com/u/7/issues/369683281 which has missing native library. Signed-off-by: Arthur Chan --- projects/keycloak/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/keycloak/Dockerfile b/projects/keycloak/Dockerfile index 7c2f2fa5f..f285116cd 100644 --- a/projects/keycloak/Dockerfile +++ b/projects/keycloak/Dockerfile @@ -16,7 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder-jvm -RUN apt install openjdk-17-jdk -y +RUN apt update && apt install openjdk-17-jdk libxext6 libxrender1 libxtst6 -y RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \ unzip maven.zip -d $SRC/maven && \