From 916e4bafa5d45a734d2a0ff1eb58ee6c0e1dd8a0 Mon Sep 17 00:00:00 2001 From: devsjc <47188100+devsjc@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:07:56 +0000 Subject: [PATCH] fix(containerfile): Numcodecs build failure --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 66a076d6..3ffe98b4 100644 --- a/Containerfile +++ b/Containerfile @@ -97,7 +97,7 @@ COPY pyproject.toml /_lock/ # Delete any unwanted parts of the installed packages to reduce size RUN apt-get -qq update && apt-get -qq -y install gcc && \ echo "Creating virtualenv at /venv" && \ - conda create --quiet --yes -p /venv python=3.12 numcodecs eccodes + conda create --quiet --yes -p /venv python=3.12 zarr==2.18.3 eccodes RUN echo "Installing dependencies into /venv" && \ cd /_lock && \ mkdir src && \