Skip to content

Commit d59bb65

Browse files
committed
update base image
1 parent 9e8ac77 commit d59bb65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rest-service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Build Service & Dependencies
44
#
55
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
6-
FROM veupathdb/alpine-dev-base:jdk-21-gradle-8.7 AS prep
6+
FROM veupathdb/alpine-dev-base:jdk25-gradle9.2 AS prep
77

88
ARG GITHUB_USERNAME
99
ARG GITHUB_TOKEN
@@ -33,7 +33,7 @@ RUN gradle test shadowJar
3333
# Run the service
3434
#
3535
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
36-
FROM amazoncorretto:22-alpine3.20
36+
FROM amazoncorretto:25-alpine3.23
3737

3838
LABEL service="multi-blast"
3939

rest-service/src/main/kotlin/mb/api/controller/utils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ inline fun <R> errorWrap(fn: () -> R): R = try { fn() }
2525
fun hashIDorThrow(raw: String, fn: () -> Exception): HashID {
2626
try {
2727
return HashID(raw)
28-
} catch (e: Exception) {
28+
} catch (_: Exception) {
2929
throw fn()
3030
}
3131
}

0 commit comments

Comments
 (0)