Skip to content
Merged

Dev #5579

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
6 changes: 3 additions & 3 deletions deploy/docker/seqr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand Down
Loading