1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2025-09-19 07:09:13 +00:00

5 Commits

Author SHA1 Message Date
2fe85c38de bump squid to 6.0.3 2023-06-13 14:12:11 +03:00
17fb8d59a2 Merge branch 'master' into v6 2023-06-13 14:10:38 +03:00
6b980db7c7 Merge pull request #102 from b4tman/add/basic_radius_auth
add basic_radius_auth
2023-06-13 14:09:18 +03:00
2d8a60d962 add basic_radius_auth 2023-06-13 13:56:11 +03:00
dependabot[bot]
dabb437ea8 Bump alpine from 3.17.3 to 3.18.0
Bumps alpine from 3.17.3 to 3.18.0.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-06-01 09:01:19 +03:00

View File

@@ -1,6 +1,6 @@
FROM alpine:3.17.3 as build FROM alpine:3.18.0 as build
ARG SQUID_VER=6.0.2 ARG SQUID_VER=6.0.3
RUN set -x && \ RUN set -x && \
apk add --no-cache \ apk add --no-cache \
@@ -58,7 +58,7 @@ RUN set -x && \
--disable-arch-native \ --disable-arch-native \
--enable-removal-policies="lru,heap" \ --enable-removal-policies="lru,heap" \
--enable-auth-digest \ --enable-auth-digest \
--enable-auth-basic="getpwnam,NCSA,DB" \ --enable-auth-basic="getpwnam,NCSA,DB,RADIUS" \
--enable-basic-auth-helpers="DB" \ --enable-basic-auth-helpers="DB" \
--enable-epoll \ --enable-epoll \
--enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \ --enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \
@@ -106,7 +106,7 @@ RUN sed -i '1s;^;include /etc/squid/conf.d/*.conf\n;' /etc/squid/squid.conf && \
# --- --- --- --- --- --- --- --- --- # --- --- --- --- --- --- --- --- ---
FROM alpine:3.17.3 FROM alpine:3.18.0
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
ENV TZ Europe/Moscow ENV TZ Europe/Moscow