1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2025-07-23 04:43:27 +00:00

6 Commits

Author SHA1 Message Date
0fd6d1f258 bump squid to 5.4 2022-02-10 14:23:09 +03:00
178974b0df bump squid to 5.3 2022-01-15 19:18:41 +03:00
2eea5bc28f enable squid_db_auth #54 2021-12-22 16:21:59 +03:00
2ba626f10a bump libressl to 3.4 2021-12-01 11:39:54 +03:00
dependabot[bot]
f9e3532674 Bump alpine from 3.14.2 to 3.15.0
Bumps alpine from 3.14.2 to 3.15.0.

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

Signed-off-by: dependabot[bot] <support@github.com>
2021-12-01 11:39:54 +03:00
dependabot[bot]
79c4b13210 Bump actions/stale from 3 to 4
Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/stale/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-01 08:56:41 +03:00
2 changed files with 8 additions and 7 deletions
.github/workflows
Dockerfile

@@ -18,7 +18,7 @@ jobs:
pull-requests: write
steps:
- uses: actions/stale@v3
- uses: actions/stale@v4
with:
days-before-stale: 182
days-before-close: 7

@@ -1,6 +1,6 @@
FROM alpine:3.14.2 as build
FROM alpine:3.15.0 as build
ENV SQUID_VER 5.2
ENV SQUID_VER 5.4
RUN set -x && \
apk add --no-cache \
@@ -56,7 +56,8 @@ RUN set -x && \
--disable-arch-native \
--enable-removal-policies="lru,heap" \
--enable-auth-digest \
--enable-auth-basic="getpwnam,NCSA" \
--enable-auth-basic="getpwnam,NCSA,DB" \
--enable-basic-auth-helpers="DB" \
--enable-epoll \
--enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \
--enable-auth-ntlm="fake" \
@@ -105,7 +106,7 @@ RUN set -x && \
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
FROM alpine:3.14.2
FROM alpine:3.15.0
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
ENV TZ Europe/Moscow
@@ -118,8 +119,8 @@ RUN apk add --no-cache \
libstdc++ \
heimdal-libs \
libcap \
libressl3.3-libcrypto \
libressl3.3-libssl \
libressl3.4-libcrypto \
libressl3.4-libssl \
libltdl
COPY --from=build /etc/squid/ /etc/squid/