Commit d8949da8 authored by Lückemeyer's avatar Lückemeyer
Browse files

moved to temurin and jdk 21 for easy arm64v8 multibuild

parent a2baf5fc
Pipeline #9116 passed with stage
# base image to build a JRE # base image to build a JRE
FROM amazoncorretto:17.0.3-alpine as corretto-jdk FROM eclipse-temurin:21-jdk-alpine as corretto-jdk
# required for strip-debug to work # required for strip-debug to work
RUN apk add --no-cache binutils RUN apk add --no-cache binutils
...@@ -32,8 +32,8 @@ ENV GID=$AGID ...@@ -32,8 +32,8 @@ ENV GID=$AGID
ARG BUILD_NUMBER= ARG BUILD_NUMBER=
# Create docker group identical to host # Create docker group identical to host
RUN addgroup -g $GID -S docker RUN addgroup --gid $GID --system docker
RUN adduser --no-create-home -u 1000 -G docker -D $USER RUN adduser --no-create-home -u 1000 --ingroup docker --disabled-password $USER
# Prepare environment. # Prepare environment.
# Create needed folders # Create needed folders
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment