diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2023-07-18 12:04:20 +0100 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2023-09-20 15:33:19 +0100 |
commit | 43a40e17bdb36015d1f54835ec794c43ed41ba0a (patch) | |
tree | 9a14d21df8ac3a9551f0330dbffd8ece114a90a2 /policy-jre/alpine | |
parent | 083ccca69980aba494ee368a159bf4933d54a245 (diff) |
Java 17 Upgrade
- change of snapshot versions
- csit fixes
- apk update for openjdk security updates
Issue-ID: POLICY-4667
Change-Id: I0f1044b88db9573886e5c5a14ebabb098128b2f2
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'policy-jre/alpine')
-rw-r--r-- | policy-jre/alpine/pom.xml | 3 | ||||
-rw-r--r-- | policy-jre/alpine/src/main/docker/Dockerfile | 9 |
2 files changed, 6 insertions, 6 deletions
diff --git a/policy-jre/alpine/pom.xml b/policy-jre/alpine/pom.xml index 1dde8bc1..e606f7ec 100644 --- a/policy-jre/alpine/pom.xml +++ b/policy-jre/alpine/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.onap.policy.docker</groupId> <artifactId>policy-jre</artifactId> - <version>3.0.0-SNAPSHOT</version> + <version>3.0.1-SNAPSHOT</version> </parent> <packaging>pom</packaging> @@ -45,7 +45,6 @@ <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>groovy-maven-plugin</artifactId> - <version>2.1.1</version> <executions> <execution> <phase>prepare-package</phase> diff --git a/policy-jre/alpine/src/main/docker/Dockerfile b/policy-jre/alpine/src/main/docker/Dockerfile index f1bf2496..d8af19f8 100644 --- a/policy-jre/alpine/src/main/docker/Dockerfile +++ b/policy-jre/alpine/src/main/docker/Dockerfile @@ -18,11 +18,11 @@ # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END========================================================= -FROM alpine:3.17 +FROM alpine:3.18.2 LABEL maintainer="Policy Team" LABEL org.opencontainers.image.title="Policy JRE Alpine" -LABEL org.opencontainers.image.description="Policy Java 11 JRE image based on Alpine" +LABEL org.opencontainers.image.description="Policy Java 17 JRE image based on Alpine" LABEL org.opencontainers.image.url="https://github.com/onap/policy-docker" LABEL org.opencontainers.image.vendor="ONAP Policy Team" LABEL org.opencontainers.image.licenses="Apache-2.0" @@ -43,11 +43,12 @@ ARG group=onap ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' # Generic additions -RUN apk add --no-cache \ +RUN apk update && \ + apk add --no-cache \ libretls \ musl-locales \ musl-locales-lang \ - openjdk11-jre \ + openjdk17-jre \ openssl \ ca-certificates && \ rm -rf /var/cache/apk/* && \ |