File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,15 @@ COPY .. .
2121# ---------- extra Python deps -----------------------------------------------------
2222# CPU-only PyTorch (wheels from CPU index)
2323RUN pip install --no-cache-dir \
24- torch==2.7.0 torchvision==0.22.0 torchaudio==2.7.0 \
24+ torch==2.7.0 torchvision==0.22.0\
2525 --index-url https://download.pytorch.org/whl/cpu
2626
27+ # CPU-only PyG (and its C/C++ extensions)
28+ RUN pip install --no-cache-dir \
29+ torch-geometric \
30+ -f https://data.pyg.org/whl/torch-2.7.0+cpu.html
31+
32+
2733COPY docker/requirements.txt /tmp/
2834RUN pip install --no-cache-dir -r /tmp/requirements.txt
2935
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ scikit-image==0.25.2
1818scikit-learn == 1.6.1
1919spacy == 3.8.6
2020tifffile == 2025.5.10
21- torch_geometric == 2.6.1
2221torchmetrics == 1.6.1
2322tqdm == 4.67.1
2423transformers == 4.51.3
You can’t perform that action at this time.
0 commit comments