From 4f66c99f26fe1f0ceddf276a52615c7deea40332 Mon Sep 17 00:00:00 2001 From: fredbcode Date: Fri, 23 Apr 2021 13:28:16 +0200 Subject: [PATCH] Update decompres tar --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c30f4f..f1dc31f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ ENV SQUID_CACHE_DIR=/var/spool/squid \ ARG SQUID_VERSION WORKDIR /tmp -RUN echo "deb-src http://deb.debian.org/debian buster main contrib" >> /etc/apt/sources.list && apt-get update && apt-get --no-install-recommends -y build-dep squid && apt-get install --no-install-recommends -y wget tar xz-utils libssl-dev libssl1.1 \ - && wget -o $SQUID_VERSION http://www.squid-cache.org/Versions/v4/$SQUID_VERSION \ - && tar -C squid --strip-components=1 -xvf $SQUID_VERSION \ +RUN echo "deb-src http://deb.debian.org/debian buster main contrib" >> /etc/apt/sources.list && apt-get update && apt-get --no-install-recommends -y build-dep squid && apt-get --no-install-recommends -y install wget tar xz-utils libssl-dev libssl1.1 \ + && wget http://www.squid-cache.org/Versions/v4/$SQUID_VERSION \ + && tar -C squid --strip-components=1 -xzf $SQUID_VERSION \ && cd squid \ && ./configure \ --prefix=/usr \