-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -16,8 +16,8 @@ jobs: | |
- name: Setup Maven Action | ||
uses: s4u/[email protected] | ||
with: | ||
java-version: '11' | ||
maven-version: '3.8.2' | ||
java-version: '17' | ||
maven-version: '3.9.5' | ||
|
||
- name: Build with Maven | ||
run: mvn -B clean install | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
# Create a first stage container to build the application, this container image will be dropped once | ||
# the runner is built | ||
FROM adoptopenjdk/maven-openjdk11 as builder | ||
FROM maven:3.9.5-eclipse-temurin-17-alpine as builder | ||
|
||
# This Dockerfile uses labels from the label-schema namespace from http://label-schema.org/rc1/ | ||
LABEL maintainer="[email protected]" \ | ||
|
@@ -30,7 +30,7 @@ RUN mvn -Duser.home=$BUILD_HOME -B package -DskipTests -Dquarkus.profile=${BUILD | |
# Create a second stage container which will only contain the runtime binaries without build dependencies | ||
FROM rockylinux:8.5 as runner | ||
|
||
ARG JAVA_PACKAGE=java-11-openjdk-headless | ||
ARG JAVA_PACKAGE=java-17-openjdk-headless | ||
ARG RUN_JAVA_VERSION=1.3.8 | ||
|
||
# path to copy built binaries from builder container | ||
|
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