-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade built to java 21 * use corretto * upgrade Mockito * explicitly define bytebuddy definition * use new fmt-maven-plugin version * use com.spotify.fmt:fmt-maven-plugin * whitespace * comments * bytebuddy
- Loading branch information
Showing
6 changed files
with
25 additions
and
12 deletions.
There are no files selected for viewing
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
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
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,8 +1,8 @@ | ||
FROM maven:3.9-amazoncorretto-17 as build | ||
FROM maven:3.9-amazoncorretto-21 as build | ||
COPY . /work/ | ||
RUN cd /work; mvn package -DskipTests | ||
|
||
FROM amazoncorretto:17 | ||
FROM amazoncorretto:21 | ||
COPY --from=build /work/kaldb/target/kaldb.jar / | ||
COPY --from=build /work/config/config.yaml / | ||
ENTRYPOINT [ "java", "-jar", "./kaldb.jar", "config.yaml" ] |
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
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
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