Skip to content
Closed
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:24.04@sha256:008173c23f95b170204355c12626cb5a965d779a7e1283b09e9cffbb1bf33ca3 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:24.04@sha256:008173c23f95b170204355c12626cb5a965d779a7e1283b09e9cffbb1bf33ca3 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:24.04@sha256:008173c23f95b170204355c12626cb5a965d779a7e1283b09e9cffbb1bf33ca3

ARG PORT=5002

Expand Down
Loading