Skip to content

Commit

Permalink
gdal: Use latest builder (#11871)
Browse files Browse the repository at this point in the history
Co-authored-by: MarcoFalke <6399679+MarcoFalke@users.noreply.github.com>
  • Loading branch information
maflcko and maflcko authored May 2, 2024
1 parent fa3f2f1 commit 6b05655
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions projects/gdal/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++ curl cmake sqlite3 pkg-config

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/gdal gdal

RUN cp gdal/fuzzers/build.sh $SRC/
Expand Down

0 comments on commit 6b05655

Please sign in to comment.