aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libspng
diff options
context:
space:
mode:
authorGravatar Randy <randy408@protonmail.com>2020-07-01 20:00:08 +0200
committerGravatar GitHub <noreply@github.com>2020-07-01 11:00:08 -0700
commit584b967a698331103dbcc169e095507d2c51b7be (patch)
tree53c2193dcf667a09ef31c164b62d359768cfa486 /projects/libspng
parent09c7ea778b0d00a6b5515a03259c24fe63b34f98 (diff)
[libspng] Fetch zlib in Dockerfile (#4050)
* [libspng] Fetch zlib in Dockerfile This step has been moved from the build script: https://github.com/randy408/libspng/commit/c35e509f04e46c2393a147f69e98a197f7615843 * Update Dockerfile * Update Dockerfile * dummy commit * Update Dockerfile * dummy commit * dummy commit
Diffstat (limited to 'projects/libspng')
-rw-r--r--projects/libspng/Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/projects/libspng/Dockerfile b/projects/libspng/Dockerfile
index 95a02b35..aba158fa 100644
--- a/projects/libspng/Dockerfile
+++ b/projects/libspng/Dockerfile
@@ -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/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
COPY build.sh $SRC/