From 7c7c4c4cb3143011487430fe48781a00891a96b7 Mon Sep 17 00:00:00 2001 From: Chris Guida Date: Wed, 19 Oct 2022 09:07:59 -0500 Subject: [PATCH] zlib 1.2.12 yanked, update to 1.2.13 in Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c99742f5b..56d04b9b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,12 +70,12 @@ RUN apt-get update -qq && \ python3-setuptools \ wget -RUN wget -q https://zlib.net/zlib-1.2.12.tar.gz \ -&& tar xvf zlib-1.2.12.tar.gz \ -&& cd zlib-1.2.12 \ +RUN wget -q https://zlib.net/zlib-1.2.13.tar.gz \ +&& tar xvf zlib-1.2.13.tar.gz \ +&& cd zlib-1.2.13 \ && ./configure \ && make \ -&& make install && cd .. && rm zlib-1.2.12.tar.gz && rm -rf zlib-1.2.12 +&& make install && cd .. && rm zlib-1.2.13.tar.gz && rm -rf zlib-1.2.13 RUN apt-get install -y --no-install-recommends unzip tclsh \ && wget -q https://www.sqlite.org/2019/sqlite-src-3290000.zip \