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
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,13 @@ COPY --from=diffuseproject/sampleworks-checkpoints:latest /checkpoints/ /checkpo
# ============================================================================
# Install all three environments: boltz, protenix, rf3
# ============================================================================
# Split into separate layers so changing one env doesn't invalidate the others
RUN pixi install -e boltz --frozen
RUN pixi install -e protenix --frozen
RUN pixi install -e rf3 --frozen
# IMPORTANT: Must be a single RUN — separate RUNs create overlay layers that
# duplicate shared conda packages (numpy, CUDA libs, etc.), using ~37 GB vs
# ~14 GB in a single layer. This difference causes disk-full failures on
# smaller CI runners (ubuntu-latest can be 72 GB or 145 GB).
RUN pixi install -e boltz --frozen && \
pixi install -e protenix --frozen && \
pixi install -e rf3 --frozen

# ============================================================================
# Pre-compile CUDA extensions to avoid JIT compilation at runtime
Expand Down