[libspng] Fetch zlib in Dockerfile (#4050)

* [libspng] Fetch zlib in Dockerfile

This step has been moved from the build script: c35e509f04

* Update Dockerfile

* Update Dockerfile

* dummy commit

* Update Dockerfile

* dummy commit

* dummy commit
This commit is contained in:
Randy 2020-07-01 20:00:08 +02:00 committed by GitHub
parent 09c7ea778b
commit 584b967a69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -24,5 +24,9 @@ RUN apt-get update && \
RUN git clone --depth 1 https://github.com/randy408/libspng.git RUN git clone --depth 1 https://github.com/randy408/libspng.git
RUN git clone --depth 1 https://github.com/google/fuzzer-test-suite RUN git clone --depth 1 https://github.com/google/fuzzer-test-suite
RUN wget -O $WORK/zlib.tar.gz http://www.zlib.net/zlib-1.2.11.tar.gz
RUN tar xzvf $WORK/zlib.tar.gz --directory $SRC/libspng/
RUN mv $SRC/libspng/zlib-1.2.11 $SRC/libspng/zlib
WORKDIR libspng WORKDIR libspng
COPY build.sh $SRC/ COPY build.sh $SRC/