From 0b2b3416d7bbb31fe8c6585453149a389c071087 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Thu, 3 Nov 2022 20:00:54 +0400 Subject: [PATCH] Build both versions of zlib in Dockerfile For consistence with other libraries --- Telegram/build/docker/centos_env/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/build/docker/centos_env/Dockerfile b/Telegram/build/docker/centos_env/Dockerfile index bfc8e6b47a..36f3a58c20 100644 --- a/Telegram/build/docker/centos_env/Dockerfile +++ b/Telegram/build/docker/centos_env/Dockerfile @@ -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 .. \