From 2411ab74a03b583ef5228e7515e32590945ff1e7 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Wed, 8 Oct 2025 15:46:48 -0700 Subject: [PATCH] Docker: explicit libssl dep --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b016489c..5b6b95f48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ FROM base AS build # Install packages needed to build gems RUN apt-get update -qq && \ - apt-get install -y --no-install-recommends -y build-essential pkg-config git libvips libyaml-dev && \ + apt-get install -y --no-install-recommends -y build-essential pkg-config git libvips libyaml-dev libssl-dev && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives # Install application gems