File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
#
15
15
FROM ghcr.io/airlift/jvmkill:latest AS jvmkill
16
16
17
- FROM registry.access. redhat.com/ubi9/ubi -minimal:latest AS jdk-download
17
+ FROM redhat/ubi10 -minimal:latest AS jdk-download
18
18
ARG JDK_DOWNLOAD_LINK
19
19
ARG JDK_VERSION
20
20
ENV JAVA_HOME="/usr/lib/jvm/${JDK_VERSION}"
27
27
mkdir -p "${JAVA_HOME}" && \
28
28
curl -#LfS "${JDK_DOWNLOAD_LINK}" | tar -zx --strip 1 -C "${JAVA_HOME}"
29
29
30
- FROM registry.access. redhat.com/ubi9/ubi:latest AS packages
30
+ FROM redhat/ubi10 AS packages
31
31
32
32
RUN \
33
33
set -xeuo pipefail && \
44
44
tar `# required to support kubectl cp` && \
45
45
rm -rf /tmp/overlay/var/cache/*
46
46
47
- # Use ubi9 minimal as it's more secure
48
- FROM registry.access. redhat.com/ubi9/ubi -micro:latest
47
+ # Use ubi10 micro as it's more secure
48
+ FROM redhat/ubi10 -micro:latest
49
49
ARG JDK_VERSION
50
50
ARG ARCH
51
51
ENV JAVA_HOME="/usr/lib/jvm/${JDK_VERSION}"
You can’t perform that action at this time.
0 commit comments