Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion driver/Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Any analysis-runner driver image must at least include gcloud and git.
FROM python:3.10-bullseye
FROM python:3.11-trixie

RUN apt update && apt install -y \
apt-transport-https \
Expand Down
4 changes: 2 additions & 2 deletions driver/Dockerfile.hail
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This image adds Hail and some other Python-based stats libraries to the base image.
FROM australia-southeast1-docker.pkg.dev/analysis-runner/images/driver-base:1.5
FROM australia-southeast1-docker.pkg.dev/analysis-runner/images/driver-base:1.6

ARG HAIL_SHA

Expand Down Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && \
cd hail && \
# Install locally, avoiding the need for a pip package.
# DEPLOY_REMOTE avoids a dev suffix being appended to dataproc initialization paths.
make install DEPLOY_REMOTE=1 HAIL_RELEASE_MODE=1 && \
make install DEPLOY_REMOTE=1 HAIL_BUILD_MODE=Release && \
cd ../.. && \
rm -rf hail && \
pip --no-cache-dir install \
Expand Down
Loading