diff --git a/docker/Dockerfile.api b/docker/Dockerfile.api index 8796e61..a1d956f 100644 --- a/docker/Dockerfile.api +++ b/docker/Dockerfile.api @@ -7,6 +7,9 @@ COPY poetry.lock poetry.lock RUN poetry config virtualenvs.create false && \ poetry install --no-root --no-cache +# Pin netCDF4 to version 1.6.5 +RUN pip install netCDF4==1.6.5 + # We have to install PyCIEMSS now since the interface uses Torch # TODO: Do not use Torch in PyCIEMSS Library interface RUN poetry run poe install-pyciemss diff --git a/docker/Dockerfile.worker b/docker/Dockerfile.worker index 72fb05d..c67cdd0 100644 --- a/docker/Dockerfile.worker +++ b/docker/Dockerfile.worker @@ -14,6 +14,9 @@ COPY poetry.lock poetry.lock RUN poetry config virtualenvs.create false && \ poetry install --no-root --no-cache +# Pin netCDF4 to version 1.6.5 +RUN pip install netCDF4==1.6.5 + RUN poetry run poe install-pyciemss COPY service service COPY tests tests