add xz and libraw to imagemagick delegates (#1287)

This commit is contained in:
Paul Kehrer 2018-04-01 17:15:12 -05:00 committed by Abhishek Arya
parent 9f770fa88b
commit 83a3e78c06
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER paul.l.kehrer@gmail.com MAINTAINER paul.l.kehrer@gmail.com
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config cmake nasm RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config cmake nasm autopoint
RUN git clone --depth 1 https://github.com/imagemagick/imagemagick RUN git clone --depth 1 https://github.com/imagemagick/imagemagick
RUN git clone --depth 1 https://gitlab.com/libtiff/libtiff RUN git clone --depth 1 https://gitlab.com/libtiff/libtiff
RUN git clone --depth 1 https://github.com/strukturag/libde265 RUN git clone --depth 1 https://github.com/strukturag/libde265
@ -25,6 +25,8 @@ RUN git clone --depth 1 https://github.com/webmproject/libwebp
RUN git clone --depth 1 https://github.com/madler/zlib RUN git clone --depth 1 https://github.com/madler/zlib
RUN git clone --depth 1 https://github.com/libjpeg-turbo/libjpeg-turbo RUN git clone --depth 1 https://github.com/libjpeg-turbo/libjpeg-turbo
RUN git clone --depth 1 https://git.savannah.nongnu.org/r/freetype/freetype2 RUN git clone --depth 1 https://git.savannah.nongnu.org/r/freetype/freetype2
RUN git clone --depth 1 https://github.com/xz-mirror/xz
RUN git clone --depth 1 https://github.com/libraw/libraw
ADD http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz bzip2-1.0.6.tar.gz ADD http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz bzip2-1.0.6.tar.gz
ADD http://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz afl_testcases.tgz ADD http://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz afl_testcases.tgz
WORKDIR imagemagick WORKDIR imagemagick