Some checks failed
test/timeline-server/pipeline/head There was a failure building this commit
5 lines
113 B
Docker
5 lines
113 B
Docker
FROM openjdk:21-jdk-slim
|
|
VOLUME /tmp
|
|
COPY target/*.jar app.jar
|
|
EXPOSE 30000
|
|
ENTRYPOINT ["java","-jar","/app.jar"] |