From bdcd913c897ad5fccadbd967676f093206d0043a Mon Sep 17 00:00:00 2001 From: Aarya Venkat <43094075+arikat@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:54:13 -0500 Subject: [PATCH 1/2] Update Dockerfile to include numpy1.24.3 Numpy2 does not work w/ current RFDiffusion, but the dockerfile automatically installs numpy2 (breaking RFDiffusion when running via docker). This just hardcodes numpy==1.24.3 to allow RFDiffusion to continue working properly. --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8364cb10..f1e2f706 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -31,6 +31,7 @@ RUN apt-get -q update \ && apt-get autoremove -y \ && apt-get clean \ && pip install -q --no-cache-dir \ + numpy==1.24.3 \ # numpy2 does not work w/ current RFDiffusion dgl==1.0.2+cu116 -f https://data.dgl.ai/wheels/cu116/repo.html \ torch==1.12.1+cu116 --extra-index-url https://download.pytorch.org/whl/cu116 \ e3nn==0.3.3 \ From 681693c346036cd1a5da61eb211c7898bd8bb13c Mon Sep 17 00:00:00 2001 From: Sergey Lyskov <3302736+lyskov@users.noreply.github.com> Date: Thu, 24 Apr 2025 09:18:00 -0600 Subject: [PATCH 2/2] dummy commit to trigger test run --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index f1e2f706..553fa148 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -49,3 +49,4 @@ WORKDIR /app/RFdiffusion ENV DGLBACKEND="pytorch" ENTRYPOINT ["python3.9", "scripts/run_inference.py"] +