Skip to content

Commit e6393c7

Browse files
xuxclaude
andcommitted
fix: add libgfortran5 to Docker runtime stage for DAlphaBall
The DAlphaBall.gcc binary requires libgfortran.so.5 on the system library path. It was only installed in the conda env (builder stage), which system binaries cannot access, causing PyRosetta scoring to crash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d994a96 commit e6393c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN conda clean -a -y
5656
FROM continuumio/miniconda3:24.7.1-0 AS runtime
5757

5858
RUN apt-get update && apt-get install -y \
59-
libgomp1 git wget \
59+
libgomp1 libgfortran5 git wget \
6060
&& rm -rf /var/lib/apt/lists/*
6161

6262
WORKDIR /app

0 commit comments

Comments
 (0)