From 2edf1aa2c72ddbb77c52202f08f9a4c136903d4a Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Sat, 8 Aug 2026 08:49:15 -0700 Subject: [PATCH] openssl: install and update certificates --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b66a345..dfc5a52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ENV DEBIAN_FRONTEND=noninteractive RUN echo "SKIP_GRAMMAR: $SKIP_GRAMMAR" RUN echo "SKIP_BUILD_APP: $SKIP_BUILD_APP" RUN echo "SKIP_DATASETS: $SKIP_DATASETS" -RUN apt-get update && apt-get install -y libatomic1 +RUN apt-get update && apt-get install -y libatomic1 openssl ca-certificates && update-ca-certificates # Install dependencies RUN if [ "$SKIP_GRAMMAR" != "true" ] ; then apt-get update && apt-get install -y openjdk-21-jdk python3 python3-pip ; else echo "Skipping openjdk installation as grammar generation is skipped" ; fi