Skip to content

Commit

Permalink
Merge branch 'release/v3.37.3-4'
Browse files Browse the repository at this point in the history
  • Loading branch information
ppxl authored and cesmarvin committed Apr 6, 2022
2 parents dd2791e + 620f1cb commit 6bfc4ed
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v3.37.3-4] - 2022-04-06
### Changed
- Upgrade zlib package to fix CVE-2018-25032; #100

## [v3.37.3-3] - 2022-03-09
### Fixed
- Logging: nexus-carp glog logger now logs to stderr; #97
Expand Down
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM registry.cloudogu.com/official/java:8u302-1
LABEL maintainer="[email protected]" \
NAME="official/nexus" \
VERSION="3.37.3-3"
VERSION="3.37.3-4"

# The version of nexus to install
ENV NEXUS_VERSION=3.37.3-02 \
Expand All @@ -12,7 +12,7 @@ ENV NEXUS_VERSION=3.37.3-02 \
NEXUS_SCRIPTING_VERSION=0.2.0 \
SHIRO_VERSION=1.3.2 \
SERVICE_TAGS=webapp \
SERVICE_ADDITIONAL_SERVICES='[{"name": "docker-registry", "location": "v2", "pass": "nexus/repository/docker-registry/v2/"}]' \
SERVICE_ADDITIONAL_SERVICES='[{"name": "docker-registry", "port": 8082, "location": "v2", "pass": "nexus/repository/docker-registry/v2/"}]' \
NEXUS_WORKDIR=/opt/sonatype/nexus \
NEXUS_SERVER="http://localhost:8081/nexus" \
SHA256_TINI="c5b0666b4cb676901f90dfcb37106783c5fe2077b04590973b885950611b30ee" \
Expand All @@ -21,7 +21,11 @@ ENV NEXUS_VERSION=3.37.3-02 \
SHA256_NEXUS_SCRIPTING="60c7f3d8a0c97b1d90d954ebad9dc07dbeb7927934b618c874b2e72295cafb48" \
SHA256_NEXUS_CARP="f9a9d9f9efcabd27fb4df2544142000d5607c8feb9772e77f23239d7a6647458"

RUN set -x \
RUN set -o errexit \
&& set -o nounset \
&& set -o pipefail \
&& apk update \
&& apk upgrade \
# add nexus user and group
&& addgroup -S -g 1000 nexus \
&& adduser -S -h /var/lib/nexus -s /bin/bash -G nexus -u 1000 nexus \
Expand Down
2 changes: 1 addition & 1 deletion dogu.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Name": "official/nexus",
"Version": "3.37.3-3",
"Version": "3.37.3-4",
"DisplayName": "Sonatype Nexus",
"Description": "The Nexus Repository is like the local warehouse where all of the parts and finished goods used in your software supply chain are stored and distributed.",
"Url": "http://www.sonatype.org/nexus",
Expand Down

0 comments on commit 6bfc4ed

Please sign in to comment.