You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ubuntu based Docker container for HDF4 CF Conversion Toolkit
3
+
## Ubuntu based Docker container for HDF4 CF Conversion Toolkit
4
+
5
+
The Docker file `Dockerfile` sources an Apt package file named `apt.txt`, which lists the Apt packages required to build the image.
6
+
7
+
Build the image with
8
+
9
+
docker build -f Dockerfile \
10
+
[--build-arg HDF4_VER=<HDF4 lib. version string, default 4.2.13>] \
11
+
[--build-arg HDFEOS_VER=<HDFEOS lib. version string, default 2.19v1.00>] \
12
+
[--build-arg HDF5_VER=<HDF5 lib. version string, default 5-1.8.19>] \
13
+
[--build-arg NETCDF_C_VER=<NetCDF C lib. version string, default 4.4.1.1>] \
14
+
[--build-arg H4CF_VER=<H4CF conversion toolkit version string, default 1.2>]
15
+
-t <image name> .
16
+
17
+
The build arguments `HDF4_VER`, `HDFEOS_VER`, `HDF5_VER`, `NETCDF_C_VER`, `H4CF_VER` are optional - default versions are used within the Docker file, as indicated above.
18
+
19
+
Run the image in a detached container with
20
+
21
+
docker run --name <container name> -itd <image name>
0 commit comments