From 65f32a49e06b66cfe5cc30e75158b46371f24f3c Mon Sep 17 00:00:00 2001 From: John Trammell Date: Mon, 22 Jun 2026 08:58:34 -0500 Subject: [PATCH] fix: retain ruby include files needed for gem builds --- Dockerfile | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d338b1..89f1a37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # ============================================================ # Stage 1: compile OpenSSL 1.1.1, jemalloc, Ruby # ============================================================ -FROM debian:bookworm-slim AS builder +FROM ubuntu:26.04 AS builder ARG OPENSSL_VERSION=1.1.1w ARG JEMALLOC_VERSION=5.3.1 @@ -69,7 +69,7 @@ EOF # Build Ruby 2.6.x with jemalloc and OpenSSL 1.1.1 ENV LD_LIBRARY_PATH=/opt/openssl/lib:/usr/local/lib -RUN <