Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #2669 proj #2672

Merged
merged 14 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
af1f9e5
Per #2669, add Proj settings to configure.ac and run bootstrap to upd…
JohnHalleyGotway Aug 23, 2023
d0435ef
Per #2669, add info about to the installation and environment files.…
JohnHalleyGotway Aug 24, 2023
1defd4e
Per #2669, update Makefile.am and Makefile.in to link to -lproj when …
JohnHalleyGotway Aug 24, 2023
c5ddf54
Per #2669, update development environments and compilation script to …
JohnHalleyGotway Aug 24, 2023
4a6c057
Per #2669, compile using the MET base image v2.1_beta4 to test whethe…
JohnHalleyGotway Aug 28, 2023
b1b2687
Per #2669, update the METbaseimage tag from v2.0_debian10 to v2.1_bet…
JohnHalleyGotway Aug 28, 2023
fff7c7c
Per #2669, I manually pushed the dtcenter/met-base:v2.1 image and am …
JohnHalleyGotway Aug 29, 2023
7fc6018
Per #2669, update the COMPILER setting to gnu_12.2.0 to be consistent…
JohnHalleyGotway Aug 30, 2023
9b2b57d
Per #2669, update HDF configuration command to get it to compile for …
JohnHalleyGotway Aug 31, 2023
4353056
Per #2669, update Dockerfile to test compiling with Debian 12 METbase…
JohnHalleyGotway Aug 31, 2023
beb9031
Per #2669, test the compilation with the v2.1_debian12 met-base image
JohnHalleyGotway Sep 1, 2023
657a2dc
Per #2669, updating Dockerfiles to test using base image v2.1, tagged…
JohnHalleyGotway Sep 1, 2023
e0af36f
Per #2669, seems to need to link to -ltirpc whenever we link to the -…
JohnHalleyGotway Sep 1, 2023
bbefa31
Per #2669, make logic, indentation, and spacing consistent throughout…
JohnHalleyGotway Sep 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/jobs/set_job_controls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ run_unit_tests=false
run_diff=false
run_update_truth=false
met_base_repo=met-base
met_base_tag=v2.0_debian10
met_base_tag=v2.1
input_data_version=develop
truth_data_version=develop

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_and_trigger_metplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
env:
SOURCE_BRANCH: ${{ steps.get_branch_name.outputs.branch_name }}-lite
MET_BASE_REPO: met-base
MET_BASE_TAG: v2.0_debian10
MET_BASE_TAG: v2.1

- name: Push Docker Image
run: .github/jobs/push_docker_image.sh
Expand Down
5 changes: 5 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ sub-directory, or the MET Online Tutorial:
$MET_<lib>LIB pointing to the directory with the library files. If
$MET_<lib>INC and $MET_<lib>LIB are defined, then $MET_<lib> is ignored.

- Set $MET_PROJ to point to the main Proj directory, or set
$MET_PROJINC to point to the directory with the Proj include files
and set $MET_PROJLIB to point to the directory with the Proj
library files.

- Set $MET_NETCDF to point to the main NetCDF directory, or set
$MET_NETCDFINC to point to the directory with the NetCDF include files
and set $MET_NETCDFLIB to point to the directory with the NetCDF
Expand Down
3 changes: 3 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
80 changes: 53 additions & 27 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,9 @@ MET_HDF5
MET_NETCDFLIB
MET_NETCDFINC
MET_NETCDF
MET_PROJLIB
MET_PROJINC
MET_PROJ
OPENMP_CFLAGS
am__fastdepCC_FALSE
am__fastdepCC_TRUE
Expand Down Expand Up @@ -888,6 +891,9 @@ CFLAGS
LDFLAGS
LIBS
CPPFLAGS
MET_PROJ
MET_PROJINC
MET_PROJLIB
MET_NETCDF
MET_NETCDFINC
MET_NETCDFLIB
Expand Down Expand Up @@ -1611,6 +1617,16 @@ Some influential environment variables:
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
MET_PROJ Where proj lib and include subdirectories are located. If they
are installed in /usr/local, you don't have to specify them.
MET_PROJINC Where proj include files are located. Use if the libraries and
include files are not under the same main proj directory. If
used, MET_PROJLIB must also be defined and MET_PROJ will be
ignored.
MET_PROJLIB Where proj libraries are located. Use if the libraries and
include files are not under the same main proj directory. If
used, MET_PROJINC must also be defined and MET_PROJ will be
ignored.
MET_NETCDF Where netcdf lib and include subdirectories are located. If they
are installed in /usr/local, you don't have to specify them.
MET_NETCDFINC
Expand Down Expand Up @@ -4513,6 +4529,43 @@ $as_echo "$ac_cv_prog_c_openmp" >&6; }
CPPFLAGS="${CPPFLAGS} ${OPENMP_CFLAGS}"
LDFLAGS="${LDFLAGS} ${OPENMP_CFLAGS}"

#
# Look for the Proj library
#

# Configure the variables. The help text will appear if the user uses "configure --help".





# Ensure that both or neither are specified.

if (test -n "$MET_PROJLIB" && test -z "$MET_PROJINC") || \
JohnHalleyGotway marked this conversation as resolved.
Show resolved Hide resolved
(test -n "$MET_PROJINC" && test -z "$MET_PROJLIB"); then
if test -n "$MET_PROJLIB"; then
as_fn_error $? "MET_PROJLIB environment variable set, but MET_PROJINC not set. If one of these variables is set, then both must be set." "$LINENO" 5
else
as_fn_error $? "MET_PROJINC environment variable set, but MET_PROJLIB not set. If one of these variables is set, then both must be set." "$LINENO" 5
fi
fi

# If the individual locations weren't specified, then the main Proj directory
# must be specified. If it isn't, let the user know they need to supply one.

if test -z "$MET_PROJLIB" && test -n "$MET_PROJ"; then
MET_PROJINC='${MET_PROJ}/include'
MET_PROJLIB='${MET_PROJ}/lib'
fi

# AC_SUBST command line variables. If we get here, the Proj
# libraries were found so no need to check

if test -n "$MET_PROJLIB"; then
CPPFLAGS="${CPPFLAGS} -I${MET_PROJINC}"
LDFLAGS="${LDFLAGS} -L${MET_PROJLIB}"
fi

#
# Look for the NetCDF library
#
Expand Down Expand Up @@ -4542,33 +4595,6 @@ if test -z "$MET_NETCDFLIB" && test -n "$MET_NETCDF"; then
MET_NETCDFLIB='${MET_NETCDF}/lib'
fi

# We don't currently look for the NetCDF libraries in "known"
# locations. If we want to, this example code might be
# helpful.
## Not specified? Check for FTK in standard places.
#if test -z "$FTKLIB"; then
# # Check for flaim tool kit as a sub-project.
# if test -d "$srcdir/ftk"; then
# AC_CONFIG_SUBDIRS([ftk])
# FTKINC='$(top_srcdir)/ftk/src'
# FTKLIB='$(top_builddir)/ftk/src'
# else
# # Check for flaim tool kit as a super-project.
# if test -d "$srcdir/../ftk"; then
# FTKINC='$(top_srcdir)/../ftk/src'
# FTKLIB='$(top_builddir)/../ftk/src'
# fi
# fi
#fi
#
## Still empty? Check for installed flaim tool kit.
#if test -z "$FTKLIB"; then
# AC_CHECK_LIB([flaimtk], [ftkFastChecksum],
# [AC_CHECK_HEADERS([flaimtk.h])
# LIBS="-lflaimtk $LIBS"],
# [AC_MSG_ERROR([No FLAIM Took Kit found.])])
#fi

# AC_SUBST command line variables. If we get here, the NetCDF
# libraries were found so no need to check

Expand Down
66 changes: 38 additions & 28 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,43 @@ AC_OPENMP()
CPPFLAGS="${CPPFLAGS} ${OPENMP_CFLAGS}"
LDFLAGS="${LDFLAGS} ${OPENMP_CFLAGS}"

#
# Look for the Proj library
#

# Configure the variables. The help text will appear if the user uses "configure --help".

AC_ARG_VAR([MET_PROJ], [Where proj lib and include subdirectories are located. If they are installed in /usr/local, you don't have to specify them.])
AC_ARG_VAR([MET_PROJINC], [Where proj include files are located. Use if the libraries and include files are not under the same main proj directory. If used, MET_PROJLIB must also be defined and MET_PROJ will be ignored.])
AC_ARG_VAR([MET_PROJLIB], [Where proj libraries are located. Use if the libraries and include files are not under the same main proj directory. If used, MET_PROJINC must also be defined and MET_PROJ will be ignored.])

# Ensure that both or neither are specified.

if (test -n "$MET_PROJLIB" && test -z "$MET_PROJINC") || \
JohnHalleyGotway marked this conversation as resolved.
Show resolved Hide resolved
(test -n "$MET_PROJINC" && test -z "$MET_PROJLIB"); then
if test -n "$MET_PROJLIB"; then
AC_MSG_ERROR([MET_PROJLIB environment variable set, but MET_PROJINC not set. If one of these variables is set, then both must be set.])
else
AC_MSG_ERROR([MET_PROJINC environment variable set, but MET_PROJLIB not set. If one of these variables is set, then both must be set.])
fi
fi

# If the individual locations weren't specified, then the main Proj directory
# must be specified. If it isn't, let the user know they need to supply one.

if test -z "$MET_PROJLIB" && test -n "$MET_PROJ"; then
MET_PROJINC='${MET_PROJ}/include'
MET_PROJLIB='${MET_PROJ}/lib'
fi

# AC_SUBST command line variables. If we get here, the Proj
# libraries were found so no need to check

if test -n "$MET_PROJLIB"; then
CPPFLAGS="${CPPFLAGS} -I${MET_PROJINC}"
LDFLAGS="${LDFLAGS} -L${MET_PROJLIB}"
fi

#
# Look for the NetCDF library
#
Expand Down Expand Up @@ -44,34 +81,7 @@ if test -z "$MET_NETCDFLIB" && test -n "$MET_NETCDF"; then
MET_NETCDFLIB='${MET_NETCDF}/lib'
fi

# We don't currently look for the NetCDF libraries in "known"
# locations. If we want to, this example code might be
# helpful.
## Not specified? Check for FTK in standard places.
#if test -z "$FTKLIB"; then
# # Check for flaim tool kit as a sub-project.
# if test -d "$srcdir/ftk"; then
# AC_CONFIG_SUBDIRS([ftk])
# FTKINC='$(top_srcdir)/ftk/src'
# FTKLIB='$(top_builddir)/ftk/src'
# else
# # Check for flaim tool kit as a super-project.
# if test -d "$srcdir/../ftk"; then
# FTKINC='$(top_srcdir)/../ftk/src'
# FTKLIB='$(top_builddir)/../ftk/src'
# fi
# fi
#fi
#
## Still empty? Check for installed flaim tool kit.
#if test -z "$FTKLIB"; then
# AC_CHECK_LIB([flaimtk], [ftkFastChecksum],
# [AC_CHECK_HEADERS([flaimtk.h])
# LIBS="-lflaimtk $LIBS"],
# [AC_MSG_ERROR([No FLAIM Took Kit found.])])
#fi

# AC_SUBST command line variables. If we get here, the NetCDF
# AC_SUBST command line variables. If we get here, the NetCDF
# libraries were found so no need to check

if test -n "$MET_NETCDFLIB"; then
Expand Down
3 changes: 3 additions & 0 deletions data/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/climo/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/climo/seeps/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/colortables/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/colortables/NCL_colortables/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/config/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/map/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/map/admin_by_country/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/poly/HMT_masks/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/poly/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/poly/NCEP_masks/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/ps/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/table_files/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
3 changes: 3 additions & 0 deletions data/tc_data/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ MET_HDFLIB = @MET_HDFLIB@
MET_NETCDF = @MET_NETCDF@
MET_NETCDFINC = @MET_NETCDFINC@
MET_NETCDFLIB = @MET_NETCDFLIB@
MET_PROJ = @MET_PROJ@
MET_PROJINC = @MET_PROJINC@
MET_PROJLIB = @MET_PROJLIB@
MET_PYTHON_BIN_EXE = @MET_PYTHON_BIN_EXE@
MET_PYTHON_CC = @MET_PYTHON_CC@
MET_PYTHON_LD = @MET_PYTHON_LD@
Expand Down
2 changes: 2 additions & 0 deletions docs/Users_Guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ The $MET_<lib>INC and $MET_<lib>LIB environment variables are used if the librar

The following environment variables should also be set:

* Set $MET_PROJ to point to the main Proj directory, or set $MET_PROJINC to point to the directory with the Proj include files and set $MET_PROJLIB to point to the directory with the Proj library files.

* Set $MET_NETCDF to point to the main NetCDF directory, or set $MET_NETCDFINC to point to the directory with the NetCDF include files and set $MET_NETCDFLIB to point to the directory with the NetCDF library files. Note that the files for both NetCDF-C and NetCDF-CXX must be installed in the same include and library directories.

* Set $MET_HDF5 to point to the main HDF5 directory.
Expand Down
2 changes: 1 addition & 1 deletion internal/scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG MET_BASE_REPO=met-base
ARG MET_BASE_TAG=v2.0_debian10
ARG MET_BASE_TAG=v2.1

FROM dtcenter/${MET_BASE_REPO}:${MET_BASE_TAG}
MAINTAINER John Halley Gotway <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion internal/scripts/docker/Dockerfile.copy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG MET_BASE_REPO=met-base-unit-test
ARG MET_BASE_TAG=v2.0_debian10
ARG MET_BASE_TAG=v2.1

FROM dtcenter/${MET_BASE_REPO}:${MET_BASE_TAG}
MAINTAINER John Halley Gotway <[email protected]>
Expand Down
Loading
Loading