1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2025-11-05 11:38:33 +00:00

Merge branch 'armhf-new' into armhf-cross

# Conflicts:
#	Dockerfile
This commit is contained in:
2020-08-11 11:38:06 +03:00
7 changed files with 134 additions and 30 deletions

View File

@@ -1,7 +1,7 @@
FROM b4tman/armhf-alpine-qemu:3.8 as build
FROM b4tman/armhf-alpine-qemu:latest as build
ENV SQUID_VER 3.5.28
ENV SQUID_SIG_KEY EA31CC5E9488E5168D2DCC5EB268E706FF5CF463
ENV SQUID_VER 4.12
ENV SQUID_SIG_KEY B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E
RUN [ "cross-build-start" ]
@@ -26,8 +26,8 @@ RUN set -x && \
RUN set -x && \
mkdir -p /tmp/build && \
cd /tmp/build && \
curl -SsL http://www.squid-cache.org/Versions/v${SQUID_VER%.*.*}/${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_VER%.*}/squid-${SQUID_VER}.tar.gz.asc -o squid-${SQUID_VER}.tar.gz.asc
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
RUN set -x && \
cd /tmp/build && \
@@ -73,6 +73,7 @@ RUN set -x && \
--enable-arp-acl \
--enable-openssl \
--enable-ssl-crtd \
--enable-security-cert-generators="file" \
--enable-ident-lookups \
--enable-useragent-log \
--enable-cache-digests \
@@ -99,9 +100,12 @@ RUN set -x && \
make -j $(grep -cs ^processor /proc/cpuinfo) && \
make install
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
RUN [ "cross-build-end" ]
FROM b4tman/armhf-alpine-qemu:3.8
FROM b4tman/armhf-alpine-qemu:latest
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
ENV TZ Europe/Moscow
@@ -116,8 +120,8 @@ RUN apk add --no-cache \
libstdc++ \
heimdal-libs \
libcap \
libressl2.7-libcrypto \
libressl2.7-libssl \
libressl3.1-libcrypto \
libressl3.1-libssl \
libltdl
COPY --from=build /etc/squid/ /etc/squid/
@@ -131,15 +135,16 @@ RUN install -d -o squid -g squid \
/var/run/squid && \
chmod +x /usr/lib/squid/*
RUN echo 'include /etc/squid/conf.d/*.conf' >> "$SQUID_CONFIG_FILE" && \
install -d -m 755 -o squid -g squid /etc/squid/conf.d
COPY squid-log.conf /etc/squid/conf.d/
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/
RUN set -x && \
apk add --no-cache --virtual .tz alpine-conf tzdata && \
/sbin/setup-timezone -z $TZ && \
apk del .tz
RUN [ "cross-build-end" ]
@@ -148,4 +153,4 @@ EXPOSE 3128/tcp
USER squid
CMD ["sh", "-c", "/usr/sbin/squid -f ${SQUID_CONFIG_FILE} -z && exec /usr/sbin/squid -f ${SQUID_CONFIG_FILE} -NYCd 1"]
CMD ["sh", "-c", "/usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -z && exec /usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -YCd 1"]