-
Notifications
You must be signed in to change notification settings - Fork 40.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade test images to ubuntu:jammy-20240111
See gh-39217
- Loading branch information
1 parent
a8c1782
commit 35b4545
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ces/conf/Ubuntu/jammy-20230624/Dockerfile → ...ces/conf/Ubuntu/jammy-20240111/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ration-tests/spring-boot-loader-tests/src/intTest/resources/conf/oracle-jdk-17/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM ubuntu:jammy-20231211.1 as prepare | ||
FROM ubuntu:jammy-20240111 as prepare | ||
COPY downloads/* /opt/download/ | ||
RUN mkdir -p /opt/jdk && \ | ||
cd /opt/jdk && \ | ||
tar xzf /opt/download/* --strip-components=1 | ||
|
||
FROM ubuntu:jammy-20231211.1 | ||
FROM ubuntu:jammy-20240111 | ||
COPY --from=prepare /opt/jdk /opt/jdk | ||
ENV JAVA_HOME /opt/jdk | ||
ENV PATH $JAVA_HOME/bin:$PATH |