From 411b922800f3056daf3b858b41b42f9c6aed3f86 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Wed, 1 Sep 2021 09:49:25 +0300 Subject: [PATCH] remove alpine 3.14.0 libretls fix --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d16821..8c4d3ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,6 @@ FROM alpine:3.14.2 as build ENV SQUID_VER 5.1 -# fix conflict with libretls and libressl -RUN set -x && \ - apk add --no-cache libretls && \ - apk upgrade --no-cache libretls - RUN set -x && \ apk add --no-cache \ gcc \ @@ -119,11 +114,6 @@ RUN set -x && \ deluser squid 2>/dev/null; delgroup squid 2>/dev/null; \ addgroup -S squid -g 3128 && adduser -S -u 3128 -G squid -g squid -H -D -s /bin/false -h /var/cache/squid squid -# fix conflict with libretls and libressl -RUN set -x && \ - apk add --no-cache libretls && \ - apk upgrade --no-cache libretls - RUN apk add --no-cache \ libstdc++ \ heimdal-libs \