Skip to content

Commit 2e8177f

Browse files
ppxlcesmarvin
authored andcommitted
Merge branch 'release/v3.6.4-2'
2 parents fb05bbf + b953085 commit 2e8177f

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v3.6.4-2] - 2022-04-06
10+
### Change
11+
- Upgrade zlib package to fix CVE-2018-25032; #11
12+
913
## [v3.6.4-1] - 2022-02-10
1014
### Fixed
1115
- XML-Parser Expat (CVE-2022-23852) security issue

Dockerfile

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
FROM registry.cloudogu.com/official/base:3.15.0-1
2-
LABEL name="official/postfix" \
3-
version="3.6.4-1" \
1+
FROM registry.cloudogu.com/official/base:3.15.3-1
2+
LABEL NAME="official/postfix" \
3+
VERSION="3.6.4-2" \
44
55

66
# INSTALL POSTFIX
7-
RUN apk add --update postfix openrc supervisor rsyslog \
8-
&& rm -rf /var/cache/apk/*
7+
RUN set -o errexit \
8+
&& set -o nounset \
9+
&& set -o pipefail \
10+
&& apk update \
11+
&& apk upgrade \
12+
&& apk add --update postfix openrc supervisor rsyslog \
13+
&& rm -rf /var/cache/apk/*
914

1015
COPY resources /
1116

dogu.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/postfix",
3-
"Version": "3.6.4-1",
3+
"Version": "3.6.4-2",
44
"DisplayName": "Postfix",
55
"Description": "Postfix - Mail Transfer Agent",
66
"Logo": "https://cloudogu.com/images/dogus/postfix.png",

0 commit comments

Comments
 (0)