File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM maven:3.9.9 -amazoncorretto-11-alpine AS build
1+ FROM maven:3.9.11 -amazoncorretto-11-alpine AS build
22COPY src /app/src
33COPY pom.xml /app
44RUN mvn -f /app/pom.xml clean package -DskipTests
55
6- FROM openjdk:11-slim-bullseye
7- RUN useradd --create-home unprivileged-user
8- USER unprivileged-user
6+ FROM amazoncorretto:11-alpine3.22
97
108COPY --from=build /app/target/EvaluationEngine-*-jar-with-dependencies.jar /usr/local/lib/evaluation-engine.jar
119ENTRYPOINT ["java" , "-jar" , "/usr/local/lib/evaluation-engine.jar" ]
Original file line number Diff line number Diff line change 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >org.openml</groupId >
44 <artifactId >EvaluationEngine</artifactId >
5- <version >1.2.1 -SNAPSHOT</version >
5+ <version >1.2.2 -SNAPSHOT</version >
66 <name >EvaluationEngine</name >
77 <description >OpenML EvaluationEngine; processes datasets, generates splits and evaluates runs</description >
88 <organization >
You can’t perform that action at this time.
0 commit comments