Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions projects/matio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libtool-bin
RUN git clone --depth 1 https://github.com/madler/zlib
RUN apt-get update && apt-get install -y make autoconf automake libtool-bin cmake
RUN git clone --depth 1 https://github.com/madler/zlib.git zlib
RUN git clone --depth 1 https://github.com/tbeu/matio.git matio
RUN git clone --depth 1 --branch hdf5_1_14 https://github.com/HDFGroup/hdf5.git hdf5
RUN git clone --depth 1 --branch hdf5_2_0_0 https://github.com/HDFGroup/hdf5.git hdf5
WORKDIR matio
COPY build.sh $SRC/
Loading