File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
14
## [ 2.32.2-1]
8
15
### Changed
9
16
- Set explicit configuration for EasyRedmine
Original file line number Diff line number Diff line change 1
- FROM registry.cloudogu.com/official/java:11.0.14-1
1
+ FROM registry.cloudogu.com/official/java:11.0.14-3
2
2
LABEL maintainer=
"[email protected] "
3
3
4
4
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 \
23
23
SERVICE_8080_NAME="scm"
24
24
25
25
# # install scm-server
26
- RUN set -x \
26
+ RUN set -x -o errexit -o nounset -o pipefail \
27
+ && apk update \
28
+ && apk upgrade \
27
29
&& apk add --no-cache graphviz ttf-dejavu mercurial jq unzip \
28
30
&& curl --fail -Lks ${SCM_PKG_URL} -o /tmp/scm-server.tar.gz \
29
31
&& echo "${SCM_PKG_SHA256} */tmp/scm-server.tar.gz" | sha256sum -c - \
You can’t perform that action at this time.
0 commit comments