Fix Dockerfile paths and add main to ValidationRunner
Some checks failed
Deploy Tools / deploy (push) Failing after 34s

This commit is contained in:
윤희준
2026-08-28 16:10:45 +09:00
parent 3498dbb388
commit 0921e6d85d
5 changed files with 11 additions and 4 deletions

View File

@@ -2,6 +2,6 @@ FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
RUN apk add --no-cache tzdata
ENV TZ=Asia/Seoul
COPY dap-was-sys/build/libs/*-SNAPSHOT.jar app.jar
COPY dat-was-sys/build/libs/*-SNAPSHOT.jar app.jar
EXPOSE 8086
ENTRYPOINT ["java", "-jar", "app.jar"]