-
Notifications
You must be signed in to change notification settings - Fork 40.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See gh-37954
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ring-boot-launch-script-tests/src/intTest/resources/conf/Ubuntu/jammy-20230624/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-20230624 as prepare | ||
FROM ubuntu:jammy-20231004 as prepare | ||
COPY downloads/* /opt/download/ | ||
RUN mkdir -p /opt/jdk && \ | ||
cd /opt/jdk && \ | ||
tar xzf /opt/download/* --strip-components=1 | ||
|
||
FROM ubuntu:jammy-20230624 | ||
FROM ubuntu:jammy-20231004 | ||
COPY --from=prepare /opt/jdk /opt/jdk | ||
ENV JAVA_HOME /opt/jdk | ||
ENV PATH $JAVA_HOME/bin:$PATH |