Build both versions of zlib in Dockerfile

For consistence with other libraries
This commit is contained in:
Ilya Fedin 2022-11-03 20:00:54 +04:00 committed by John Preston
parent 1c514b23ea
commit 0b2b3416d7

View File

@ -80,7 +80,7 @@ RUN git clone -b v3.4.2 --depth=1 {{ GIT }}/libffi/libffi.git \
FROM builder AS zlib
RUN git clone -b v1.2.11 --depth=1 {{ GIT }}/madler/zlib.git \
&& cd zlib \
&& ./configure --static \
&& ./configure \
&& make -j$(nproc) \
&& make DESTDIR="{{ LibrariesPath }}/zlib-cache" install \
&& cd .. \