From 98a9c967c0c632268e55db3b3cf9530e1417da1f Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Fri, 16 Feb 2024 17:06:28 -0700 Subject: [PATCH] Create a new tar_file.met-base-v3.2.tgz tar file for the dependent libraries and update this Dockerfile to pull it. This is exact same as version 3.1 but for simplicity, we should keep version of the dependent library tar files consistent with the MET base image version number. Note that I'll delete and recreate the existing METbaseimage v3.2 release. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6215f7e..38569ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,7 +69,7 @@ RUN wget https://www.python.org/ftp/python/${PYTHON_VER}/Python-${PYTHON_VER}.tg # Compile the MET libraries # ARG MET_COMPILE_SCRIPT_BRANCH=develop -ARG MET_TAR_FILE_VERSION_NAME=met-base-v3.1 +ARG MET_TAR_FILE_VERSION_NAME=met-base-v3.2 RUN echo "Pulling compilation script from MET branch ${MET_COMPILE_SCRIPT_BRANCH}" \ && wget https://dtcenter.ucar.edu/dfiles/code/METplus/MET/installation/tar_files.${MET_TAR_FILE_VERSION_NAME}.tgz \ && wget https://raw.githubusercontent.com/dtcenter/MET/${MET_COMPILE_SCRIPT_BRANCH}/internal/scripts/installation/compile_MET_all.sh \