Skip to content

ci(baseimage): upgraded base image of generator to latest ubi9 versio… #12523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/swagger-generator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redhat/ubi9-minimal:9.2
FROM redhat/ubi9-minimal:9.5
RUN microdnf -y install shadow-utils
RUN microdnf -y install which
RUN microdnf -y install glibc-langpack-en
Expand Down
10 changes: 5 additions & 5 deletions modules/swagger-generator/Dockerfile_root
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM redhat/ubi9-minimal:9.2
RUN microdnf -y install which
RUN microdnf -y install glibc-langpack-en
RUN microdnf -y install tar
RUN microdnf -y install gzip
FROM redhat/ubi9-minimal:9.5
RUN microdnf -y install which && \
microdnf -y install glibc-langpack-en && \
microdnf -y install tar && \
microdnf -y install gzip
ENV disableOas31Resolve=False
ENV JAVA_HOME=/opt/java/openjdk
COPY --from=eclipse-temurin:17-jre $JAVA_HOME $JAVA_HOME
Expand Down