From a3f191173fbeb20be5affa4d7071013069ebcf61 Mon Sep 17 00:00:00 2001 From: Hana Snow Date: Thu, 10 Sep 2026 12:10:39 -0400 Subject: [PATCH] update debian to supported version --- deploy/docker/seqr/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/docker/seqr/Dockerfile b/deploy/docker/seqr/Dockerfile index 2e87969834..76a2fb26d9 100644 --- a/deploy/docker/seqr/Dockerfile +++ b/deploy/docker/seqr/Dockerfile @@ -22,10 +22,10 @@ RUN npm run build ############################ # Python build stage ############################ -FROM python:3.11-slim-bullseye AS build +FROM python:3.11-slim-trixie AS build SHELL ["/bin/bash", "-o", "pipefail", "-c"] -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get -o Acquire::Check-Valid-Until=false update && apt-get install -y --no-install-recommends \ apt-utils \ bzip2 \ curl \ @@ -52,7 +52,7 @@ RUN pip install --no-cache-dir wheel \ ############################ # Runtime stage ############################ -FROM python:3.11-slim-bullseye AS runtime +FROM python:3.11-slim-trixie AS runtime # Copy Python virtualenv from build stage COPY --from=build /opt/venv /opt/venv