init spring boot actuator service

This commit is contained in:
xuhao
2026-08-11 15:25:03 +08:00
parent 1f19b65205
commit 058f319f45
2 changed files with 15 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
.git
.idea
target/classes
target/test-classes
*.log
+10
View File
@@ -0,0 +1,10 @@
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
COPY target/actuator-service-initial-0.0.1-SNAPSHOT.jar app.jar
EXPOSE 9000
EXPOSE 9001
ENTRYPOINT ["java", "-jar", "app.jar"]