You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,25 @@ RUN apt-get update && \
29
29
30
30
ENV _CUDA_COMPAT_TIMEOUT=90
31
31
32
-
# Install other dependencies
33
-
RUN pip install --no-cache-dir "h5py>=3.7.0""netcdf4>=1.6.3""ruamel.yaml>=0.17.22""scikit-learn>=1.0.2""cftime>=1.6.2""einops>=0.7.0""pyspng>=0.1.0"
34
-
RUN pip install --no-cache-dir "hydra-core>=1.2.0""termcolor>=2.1.1""wandb>=0.13.7""pydantic>=1.10.2""imageio>=2.28.1""moviepy>=1.0.3""tqdm>=4.60.0""gcsfs==2024.2.0"
echo "No custom wheel for pyspng found. Installing pyspng for: $TARGETPLATFORM from pypi" && \
44
+
pip install --no-cache-dir "pyspng>=0.1.0"; \
45
+
fi
46
+
47
+
# Install other dependencies
48
+
RUN pip install --no-cache-dir "h5py>=3.7.0""netcdf4>=1.6.3""ruamel.yaml>=0.17.22""scikit-learn>=1.0.2""cftime>=1.6.2""einops>=0.7.0"
49
+
RUN pip install --no-cache-dir "hydra-core>=1.2.0""termcolor>=2.1.1""wandb>=0.13.7""pydantic>=1.10.2""imageio>=2.28.1""moviepy>=1.0.3""tqdm>=4.60.0""gcsfs==2024.2.0"
50
+
39
51
# Install Numcodecs (This needs a separate install because Numcodecs ARM pip install has issues)
40
52
# A fix is being added here: https://github.com/zarr-developers/numcodecs/pull/315 but the public release is not ready yet.
0 commit comments