From 3c568e7b86956f2b9cf41c9ab298be1d3c03a12b Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Tue, 4 Jul 2023 11:10:04 +0200 Subject: [PATCH] Native: update zlib download URL in toolchain builder zlib 1.2.11 has been moved to fossils/ on the official website. ^KT-58864 --- kotlin-native/tools/toolchain_builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/tools/toolchain_builder/Dockerfile b/kotlin-native/tools/toolchain_builder/Dockerfile index 980995b6681..b6b4ed0af45 100644 --- a/kotlin-native/tools/toolchain_builder/Dockerfile +++ b/kotlin-native/tools/toolchain_builder/Dockerfile @@ -28,7 +28,7 @@ USER $USERNAME WORKDIR /home/$USERNAME # Download zlib sources. -RUN curl -LO https://zlib.net/zlib-1.2.11.tar.gz && \ +RUN curl -LO https://zlib.net/fossils/zlib-1.2.11.tar.gz && \ tar -xf zlib-1.2.11.tar.gz && \ rm zlib-1.2.11.tar.gz