Browse Source

upgrade alpine base image from v3.18.5 to v3.19.0 including upgrade of postfix package from v3.8.3-r0 to v3.8.3-r1 (rebuild against icu 74.1)

https://git.alpinelinux.org/aports/commit/main/postfix?h=3.19-stable&id=f38cdc3c34da1e1ebaa4783b61443fbb353d8d21
Fabian Peter Hammerle 4 months ago
parent
commit
3c94f771f6
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Dockerfile

+ 4 - 4
Dockerfile

@@ -1,12 +1,12 @@
-FROM docker.io/alpine:3.18.5
+FROM docker.io/alpine:3.19.0
 
 # http://www.postfix.org/announcements.html
-# https://git.alpinelinux.org/aports/log/main/postfix?h=3.18-stable
-ARG POSTFIX_PACKAGE_VERSION=3.8.3-r0
+# https://git.alpinelinux.org/aports/log/main/postfix?h=3.19-stable
+ARG POSTFIX_PACKAGE_VERSION=3.8.3-r1
 # http://www.postfix.org/postconf.5.html#tls_append_default_CA
 # https://www.mozilla.org/en-US/about/governance/policies/security-group/certs/
 # https://gitlab.alpinelinux.org/alpine/ca-certificates/-/commits/master
-# https://git.alpinelinux.org/aports/log/main/ca-certificates?h=3.17-stable
+# https://git.alpinelinux.org/aports/log/main/ca-certificates?h=3.19-stable
 ARG MOZILLA_CA_CERT_STORE_PACKAGE_VERSION=20230506-r0
 RUN apk add --no-cache \
         ca-certificates=$MOZILLA_CA_CERT_STORE_PACKAGE_VERSION \