Skip to content
Merged
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 docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Fetch Schema Artifacts
FROM ubuntu:24.04 AS schema-fetcher
FROM ubuntu:26.04@sha256:da6fc2be547864451aa253836dd926da33623312df4a9a243e35dc877c378a78 AS schema-fetcher

RUN apt-get update && apt-get install -y --no-install-recommends curl jq tar ca-certificates \
&& rm -rf /var/lib/apt/lists/* \
Expand All @@ -15,7 +15,7 @@ RUN TAG=$(curl -fsSL https://api.github.com/repos/CCPBioSim/biosim-schema/releas


# Stage 2: Build Python dependencies
FROM ubuntu:24.04 AS builder
FROM ubuntu:26.04@sha256:da6fc2be547864451aa253836dd926da33623312df4a9a243e35dc877c378a78 AS builder

ENV DEBIAN_FRONTEND=noninteractive \
PYTHONDONTWRITEBYTECODE=1 \
Expand Down Expand Up @@ -49,7 +49,7 @@ RUN pip install --no-cache-dir \
pip install --no-cache-dir .

# Stage 3: Runtime
FROM ubuntu:24.04
FROM ubuntu:26.04@sha256:da6fc2be547864451aa253836dd926da33623312df4a9a243e35dc877c378a78

ARG PORT=5002

Expand Down
Loading