Skip to content

Commit

Permalink
proj4: Use latest builder (google#11857)
Browse files Browse the repository at this point in the history
Co-authored-by: MarcoFalke <[email protected]>
  • Loading branch information
maflcko and maflcko authored May 1, 2024
1 parent 51c42fa commit da06948
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions projects/proj4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@
#
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder@sha256:19782f7fe8092843368894dbc471ce9b30dd6a2813946071a36e8b05f5b1e27e
# ! This project was pinned after a clang bump. Please remove the pin, Try to fix any build warnings and errors, as well as runtime errors
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && \
apt-get install -y make autoconf automake libtool g++ sqlite3 pkg-config wget

ENV CMAKE_VERSION 3.29.2
RUN apt-get update && apt-get install -y wget sudo && \
wget https://github.com/Kitware/CMake/releases/download/v$CMAKE_VERSION/cmake-$CMAKE_VERSION-Linux-x86_64.sh && \
chmod +x cmake-$CMAKE_VERSION-Linux-x86_64.sh && \
./cmake-$CMAKE_VERSION-Linux-x86_64.sh --skip-license --prefix="/usr/local"

RUN git clone --depth 1 https://github.com/OSGeo/PROJ PROJ

RUN git clone --depth 1 https://github.com/curl/curl.git PROJ/curl
Expand Down

0 comments on commit da06948

Please sign in to comment.