2022-06-01 02:01:18 +00:00
|
|
|
FROM alpine:3.16.0 as build
|
2017-02-08 07:07:59 +00:00
|
|
|
|
2022-06-16 06:01:57 +00:00
|
|
|
ENV SQUID_VER 5.6
|
2017-05-04 08:09:20 +00:00
|
|
|
|
2017-05-04 10:34:08 +00:00
|
|
|
RUN set -x && \
|
2017-09-22 11:41:21 +00:00
|
|
|
apk add --no-cache \
|
2017-05-04 08:09:20 +00:00
|
|
|
gcc \
|
|
|
|
g++ \
|
|
|
|
libc-dev \
|
|
|
|
curl \
|
|
|
|
gnupg \
|
2017-07-03 10:45:19 +00:00
|
|
|
libressl-dev \
|
2017-05-04 08:09:20 +00:00
|
|
|
perl-dev \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
make \
|
|
|
|
pkgconfig \
|
2017-07-03 10:45:19 +00:00
|
|
|
heimdal-dev \
|
2017-05-04 08:09:20 +00:00
|
|
|
libtool \
|
|
|
|
libcap-dev \
|
2017-09-22 11:41:21 +00:00
|
|
|
linux-headers
|
|
|
|
|
|
|
|
RUN set -x && \
|
2017-05-04 08:09:20 +00:00
|
|
|
mkdir -p /tmp/build && \
|
|
|
|
cd /tmp/build && \
|
2018-07-16 11:01:49 +00:00
|
|
|
curl -SsL http://www.squid-cache.org/Versions/v${SQUID_VER%%.*}/squid-${SQUID_VER}.tar.gz -o squid-${SQUID_VER}.tar.gz && \
|
|
|
|
curl -SsL http://www.squid-cache.org/Versions/v${SQUID_VER%%.*}/squid-${SQUID_VER}.tar.gz.asc -o squid-${SQUID_VER}.tar.gz.asc
|
2021-07-01 11:14:15 +00:00
|
|
|
|
|
|
|
COPY squid-keys.asc /tmp
|
|
|
|
|
2017-09-22 11:41:21 +00:00
|
|
|
RUN set -x && \
|
|
|
|
cd /tmp/build && \
|
2017-05-04 08:09:20 +00:00
|
|
|
export GNUPGHOME="$(mktemp -d)" && \
|
2021-07-01 11:14:15 +00:00
|
|
|
gpg --import /tmp/squid-keys.asc && \
|
2017-05-04 08:09:20 +00:00
|
|
|
gpg --batch --verify squid-${SQUID_VER}.tar.gz.asc squid-${SQUID_VER}.tar.gz && \
|
2017-09-22 11:41:21 +00:00
|
|
|
rm -rf "$GNUPGHOME"
|
|
|
|
|
|
|
|
RUN set -x && \
|
|
|
|
cd /tmp/build && \
|
2017-05-04 08:09:20 +00:00
|
|
|
tar --strip 1 -xzf squid-${SQUID_VER}.tar.gz && \
|
2017-09-22 11:41:21 +00:00
|
|
|
\
|
|
|
|
CFLAGS="-g0 -O2" \
|
|
|
|
CXXFLAGS="-g0 -O2" \
|
|
|
|
LDFLAGS="-s" \
|
|
|
|
\
|
2017-05-04 08:09:20 +00:00
|
|
|
./configure \
|
|
|
|
--build="$(uname -m)" \
|
|
|
|
--host="$(uname -m)" \
|
|
|
|
--prefix=/usr \
|
|
|
|
--datadir=/usr/share/squid \
|
|
|
|
--sysconfdir=/etc/squid \
|
|
|
|
--libexecdir=/usr/lib/squid \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--with-logdir=/var/log/squid \
|
|
|
|
--disable-strict-error-checking \
|
|
|
|
--disable-arch-native \
|
|
|
|
--enable-removal-policies="lru,heap" \
|
|
|
|
--enable-auth-digest \
|
2022-04-20 07:05:29 +00:00
|
|
|
--enable-auth-basic="getpwnam,NCSA,DB" \
|
2021-12-21 20:30:30 +00:00
|
|
|
--enable-basic-auth-helpers="DB" \
|
2017-05-04 08:09:20 +00:00
|
|
|
--enable-epoll \
|
|
|
|
--enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \
|
|
|
|
--enable-auth-ntlm="fake" \
|
2020-08-13 11:30:53 +00:00
|
|
|
--enable-auth-negotiate="kerberos,wrapper" \
|
2017-05-04 08:09:20 +00:00
|
|
|
--enable-silent-rules \
|
|
|
|
--disable-mit \
|
2017-07-03 10:45:19 +00:00
|
|
|
--enable-heimdal \
|
2017-05-04 08:09:20 +00:00
|
|
|
--enable-delay-pools \
|
|
|
|
--enable-arp-acl \
|
|
|
|
--enable-openssl \
|
|
|
|
--enable-ssl-crtd \
|
2017-05-16 08:49:14 +00:00
|
|
|
--enable-security-cert-generators="file" \
|
2017-05-04 08:09:20 +00:00
|
|
|
--enable-ident-lookups \
|
|
|
|
--enable-useragent-log \
|
|
|
|
--enable-cache-digests \
|
|
|
|
--enable-referer-log \
|
|
|
|
--enable-async-io \
|
|
|
|
--enable-truncate \
|
|
|
|
--enable-arp-acl \
|
|
|
|
--enable-htcp \
|
|
|
|
--enable-carp \
|
2017-05-04 10:34:08 +00:00
|
|
|
--enable-epoll \
|
2017-05-04 08:09:20 +00:00
|
|
|
--enable-follow-x-forwarded-for \
|
|
|
|
--enable-storeio="diskd rock" \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--enable-translation \
|
|
|
|
--disable-snmp \
|
|
|
|
--disable-dependency-tracking \
|
|
|
|
--with-large-files \
|
|
|
|
--with-default-user=squid \
|
|
|
|
--with-openssl \
|
2017-09-22 11:41:21 +00:00
|
|
|
--with-pidfile=/var/run/squid/squid.pid
|
|
|
|
|
2020-10-03 13:31:02 +00:00
|
|
|
|
2017-09-22 11:41:21 +00:00
|
|
|
RUN set -x && \
|
|
|
|
cd /tmp/build && \
|
2020-10-03 13:31:02 +00:00
|
|
|
nproc=$(n=$(nproc) ; max_n=6 ; [ $n -le $max_n ] && echo $n || echo $max_n) && \
|
2020-08-16 13:34:51 +00:00
|
|
|
make -j $nproc && \
|
2020-10-03 13:31:02 +00:00
|
|
|
make install && \
|
|
|
|
cd tools/squidclient && make && make install-strip
|
|
|
|
|
|
|
|
RUN sed -i '1s;^;include /etc/squid/conf.d/*.conf\n;' /etc/squid/squid.conf
|
|
|
|
RUN echo 'include /etc/squid/conf.d.tail/*.conf' >> /etc/squid/squid.conf
|
2017-09-22 11:41:21 +00:00
|
|
|
|
2022-06-01 02:01:18 +00:00
|
|
|
FROM alpine:3.16.0
|
2017-09-22 11:41:21 +00:00
|
|
|
|
|
|
|
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
|
|
|
|
ENV TZ Europe/Moscow
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
libstdc++ \
|
|
|
|
heimdal-libs \
|
|
|
|
libcap \
|
2022-06-02 09:06:04 +00:00
|
|
|
libressl3.5-libcrypto \
|
|
|
|
libressl3.5-libssl \
|
2017-09-22 11:41:21 +00:00
|
|
|
libltdl
|
|
|
|
|
|
|
|
COPY --from=build /etc/squid/ /etc/squid/
|
|
|
|
COPY --from=build /usr/lib/squid/ /usr/lib/squid/
|
|
|
|
COPY --from=build /usr/share/squid/ /usr/share/squid/
|
|
|
|
COPY --from=build /usr/sbin/squid /usr/sbin/squid
|
2020-10-03 13:31:02 +00:00
|
|
|
COPY --from=build /usr/bin/squidclient /usr/bin/squidclient
|
|
|
|
|
2017-09-22 11:41:21 +00:00
|
|
|
|
|
|
|
RUN install -d -o squid -g squid \
|
2017-05-04 08:09:20 +00:00
|
|
|
/var/cache/squid \
|
|
|
|
/var/log/squid \
|
|
|
|
/var/run/squid && \
|
2017-09-22 11:41:21 +00:00
|
|
|
chmod +x /usr/lib/squid/*
|
|
|
|
|
2019-08-11 09:58:17 +00:00
|
|
|
RUN install -d -m 755 -o squid -g squid \
|
|
|
|
/etc/squid/conf.d \
|
|
|
|
/etc/squid/conf.d.tail
|
|
|
|
RUN touch /etc/squid/conf.d/placeholder.conf
|
|
|
|
COPY squid-log.conf /etc/squid/conf.d.tail/
|
2017-09-22 11:41:21 +00:00
|
|
|
|
|
|
|
RUN set -x && \
|
|
|
|
apk add --no-cache --virtual .tz alpine-conf tzdata && \
|
|
|
|
/sbin/setup-timezone -z $TZ && \
|
|
|
|
apk del .tz
|
2017-05-11 06:59:38 +00:00
|
|
|
|
2017-02-08 07:42:55 +00:00
|
|
|
VOLUME ["/var/cache/squid"]
|
2017-02-08 07:07:59 +00:00
|
|
|
EXPOSE 3128/tcp
|
2017-02-08 07:42:55 +00:00
|
|
|
|
2017-05-04 08:09:20 +00:00
|
|
|
USER squid
|
|
|
|
|
2017-05-16 08:49:14 +00:00
|
|
|
CMD ["sh", "-c", "/usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -z && exec /usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -YCd 1"]
|