Skip to content

Commit a70bca1

Browse files
committed
#56 Upgrade zlib and fix CVE-2018-25032 for SCMM 2.32.2-1
1 parent 95d2364 commit a70bca1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
##[unreleased]
8+
### Changed
9+
- Upgrade java base image to 11.0.14-3; #56
10+
11+
### Fixed
12+
- Upgrade zlib to fix CVE-2018-25032; #56
13+
714
## [2.32.2-1]
815
### Changed
916
- Set explicit configuration for EasyRedmine

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.cloudogu.com/official/java:11.0.14-1
1+
FROM registry.cloudogu.com/official/java:11.0.14-3
22
LABEL maintainer="[email protected]"
33

44
ARG SCM_PKG_URL=https://packages.scm-manager.org/repository/releases/sonia/scm/packaging/unix/2.32.2/unix-2.32.2.tar.gz
@@ -23,7 +23,9 @@ ENV SCM_HOME=/var/lib/scm \
2323
SERVICE_8080_NAME="scm"
2424

2525
## install scm-server
26-
RUN set -x \
26+
RUN set -x -o errexit -o nounset -o pipefail \
27+
&& apk update \
28+
&& apk upgrade \
2729
&& apk add --no-cache graphviz ttf-dejavu mercurial jq unzip \
2830
&& curl --fail -Lks ${SCM_PKG_URL} -o /tmp/scm-server.tar.gz \
2931
&& echo "${SCM_PKG_SHA256} */tmp/scm-server.tar.gz" | sha256sum -c - \

0 commit comments

Comments
 (0)