From ded6109b7f390f401159065d8e2c2d6f382e449a Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sun, 7 Mar 2021 15:23:18 +0100 Subject: [PATCH] proj4/Dockerfile: install wget (#5313) Builds are currently broken since running libtiff ./autogen.sh requires wget ``` autoconf echo ./autogen.sh: getting config.guess... ./autogen.sh: getting config.guess... wget -q --timeout=5 -O config/config.guess.tmp https://git.savannah.gnu.org/cgit/config.git/plain/config.guess ``` --- projects/proj4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/proj4/Dockerfile b/projects/proj4/Dockerfile index 8d9790698..da7263a0c 100644 --- a/projects/proj4/Dockerfile +++ b/projects/proj4/Dockerfile @@ -16,7 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && \ - apt-get install -y make autoconf automake libtool g++ sqlite3 pkg-config + apt-get install -y make autoconf automake libtool g++ sqlite3 pkg-config wget RUN git clone --depth 1 https://github.com/OSGeo/proj proj