This commit is contained in:
2025-05-12 13:28:44 +08:00
commit 9c71055e85
137 changed files with 6966 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# 基础镜像
FROM openjdk:17-jdk-alpine
LABEL authors="wucongxing"
# 工作目录
WORKDIR /app
# 复制jar包
COPY target/caseData.jar /app/app.jar
# 暴露端口
EXPOSE 8080
# 启动命令
ENTRYPOINT ["java", "-jar", "/app/app.jar"]