Files
timeline-server/timeline-gateway-service/Dockerfile
jiangh277 1c0d72351f
Some checks failed
test/timeline-server/pipeline/head There was a failure building this commit
java image edit
2025-12-24 17:06:42 +08:00

6 lines
117 B
Docker

FROM eclipse-temurin:21-jdk
VOLUME /tmp
COPY target/*.jar app.jar
EXPOSE 30000
ENTRYPOINT ["java","-jar","/app.jar"]