From 085be799c1ed0fdbf1c4c5f57c4c3fee06703099 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Tue, 6 Feb 2024 23:03:17 -0700 Subject: [PATCH] Hotfix to main to fix the path to the ncdf4 R package tar file. --- Dockerfile.unit_test_env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.unit_test_env b/Dockerfile.unit_test_env index 6938adb..4366c49 100644 --- a/Dockerfile.unit_test_env +++ b/Dockerfile.unit_test_env @@ -19,7 +19,7 @@ RUN echo "Installing tools needed for running MET unit tests..." \ && echo "Installing R..." \ && apt install -y r-base \ && echo "Installing R ncdf4 1.21..." \ - && wget https://cran.r-project.org/src/contrib/ncdf4_1.21.tar.gz \ + && wget https://cran.r-project.org/src/contrib/Archive/ncdf4/ncdf4_1.21.tar.gz \ && R CMD INSTALL --configure-args="--with-nc-config=/usr/local/netcdf/netcdf-c-4.7.4/nc-config" ncdf4_1.21.tar.gz \ && echo "Installing NCO and netcdf-bin (for ncdiff)..." \ && apt install -y nco netcdf-bin \