From d2f0e8a39d22f375a2b15088c4a346b4188485bc Mon Sep 17 00:00:00 2001 From: John Marshall Date: Wed, 14 Jan 2026 17:00:09 +1300 Subject: [PATCH] Return to base on Debian bullseye Hail still requires openjdk-11 specifically, and neither bookworm nor trixie provides this old version. (Also use libopenblas0 rather than -base, as the latter is a transitional wrapper package not present in later releases.) --- driver/Dockerfile.base | 2 +- driver/Dockerfile.hail | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/Dockerfile.base b/driver/Dockerfile.base index 009efd3f..b1e2b43e 100644 --- a/driver/Dockerfile.base +++ b/driver/Dockerfile.base @@ -1,5 +1,5 @@ # Any analysis-runner driver image must at least include gcloud and git. -FROM python:3.11-trixie +FROM python:3.11-bullseye RUN apt update && apt install -y \ apt-transport-https \ diff --git a/driver/Dockerfile.hail b/driver/Dockerfile.hail index 6e889cd6..928bcfc4 100644 --- a/driver/Dockerfile.hail +++ b/driver/Dockerfile.hail @@ -13,7 +13,7 @@ RUN apt-get update && \ gcc \ libfontconfig \ liblapack3 \ - libopenblas-base \ + libopenblas0 \ openjdk-11-jdk-headless \ rsync \ software-properties-common && \