diff options
Diffstat (limited to 'projects/gdal/Dockerfile')
-rw-r--r-- | projects/gdal/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/gdal/Dockerfile b/projects/gdal/Dockerfile index 649fe3f4..17b57f91 100644 --- a/projects/gdal/Dockerfile +++ b/projects/gdal/Dockerfile @@ -28,10 +28,11 @@ RUN git clone --depth 1 https://github.com/curl/curl.git gdal/curl COPY NC4_put_propattr_leak_fix.patch libnetcdf_fix_undefined_left_shift_in_ncx_get_size_t.patch $SRC/ -RUN curl https://www.gfd-dennou.org/arch/netcdf/unidata-mirror/netcdf-4.4.1.1.tar.gz > gdal/netcdf-4.4.1.1.tar.gz && \ +RUN curl https://src.fedoraproject.org/lookaside/pkgs/netcdf/netcdf-4.4.1.1.tar.gz/9210fd5355bee868684d9b8f83064aa6/netcdf-4.4.1.1.tar.gz > gdal/netcdf-4.4.1.1.tar.gz && \ cd gdal && \ tar xzf netcdf-4.4.1.1.tar.gz && \ rm -f netcdf-4.4.1.1.tar.gz && \ + mv netcdf-c-4.4.1.1 netcdf-4.4.1.1 && \ cd netcdf-4.4.1.1 && \ patch -p0 < $SRC/NC4_put_propattr_leak_fix.patch && \ patch -p0 < $SRC/libnetcdf_fix_undefined_left_shift_in_ncx_get_size_t.patch && \ |