File tree 6 files changed +31
-7
lines changed
src/main/kotlin/no/nav/syfo
6 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 27
27
if : ${{ !env.found_image }}
28
28
uses : actions/setup-java@v1
29
29
with :
30
- java-version : ' 11 .x'
30
+ java-version : ' 17 .x'
31
31
- name : Checkout code
32
32
if : ${{ !env.found_image }}
33
33
uses : actions/checkout@v2
47
47
ORG_GRADLE_PROJECT_githubPassword : ${{ secrets.GITHUB_TOKEN }}
48
48
run : |
49
49
./gradlew shadowJar -x test
50
+ - name : Install cosign
51
+ if : ${{ !env.found_image }}
52
+ uses : sigstore/cosign-installer@main
53
+ with :
54
+ cosign-release : ' v1.3.1'
55
+ - name : Verify distroless base image
56
+ if : ${{ !env.found_image }}
57
+ run : |
58
+ cosign verify --key distroless.pub gcr.io/distroless/java17
50
59
- name : Build and publish Docker image if not already done
51
60
if : ${{ !env.found_image }}
52
61
env :
Original file line number Diff line number Diff line change 13
13
- name : Setup java
14
14
uses : actions/setup-java@v1
15
15
with :
16
- java-version : ' 11 .x'
16
+ java-version : ' 17 .x'
17
17
- name : Checkout code
18
18
uses : actions/checkout@v1
19
19
- uses : actions/cache@v1
46
46
ORG_GRADLE_PROJECT_githubPassword : ${{ secrets.GITHUB_TOKEN }}
47
47
run : |
48
48
./gradlew shadowJar -x test
49
+ - name : Install cosign
50
+ uses : sigstore/cosign-installer@main
51
+ with :
52
+ cosign-release : ' v1.3.1'
53
+ - name : Verify distroless base image
54
+ run : |
55
+ cosign verify --key distroless.pub gcr.io/distroless/java17
49
56
- name : Build and publish Docker image
50
57
env :
51
58
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
- FROM navikt/java:11
1
+ FROM gcr.io/distroless/java17
2
+ WORKDIR /app
2
3
COPY build/libs/app.jar app.jar
3
- ENV JAVA_OPTS="-Dlogback.configurationFile=logback.xml"
4
- ENV APPLICATION_PROFILE="remote"
4
+ ENV JDK_JAVA_OPTIONS="-XX:MaxRAMPercentage=75 -Dlogback.configurationFile=logback.xml"
5
+ ENV TZ="Europe/Oslo"
6
+ EXPOSE 8080
7
+ USER nonroot
8
+ CMD [ "app.jar" ]
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ tasks {
120
120
}
121
121
122
122
withType<KotlinCompile > {
123
- kotlinOptions.jvmTarget = " 11 "
123
+ kotlinOptions.jvmTarget = " 17 "
124
124
}
125
125
126
126
withType<Test > {
Original file line number Diff line number Diff line change
1
+ -----BEGIN PUBLIC KEY-----
2
+ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWZzVzkb8A+DbgDpaJId/bOmV8n7Q
3
+ OqxYbK0Iro6GzSmOzxkn+N2AKawLyXi84WSwJQBK//psATakCgAQKkNTAA==
4
+ -----END PUBLIC KEY-----
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ fun main() {
55
55
56
56
applicationEngineEnvironment.monitor.subscribe(ApplicationStarted ) { application ->
57
57
applicationState.ready = true
58
- application.environment.log.info(" Application is ready" )
58
+ application.environment.log.info(" Application is ready, running Java VM ${ Runtime .version()} " )
59
59
launchKafkaModule(
60
60
applicationState = applicationState,
61
61
environment = environment,
You can’t perform that action at this time.
0 commit comments