Skip to content

Commit 7a55c72

Browse files
committed
Hotfix : 도커 파일 상의 app.jar 파일 위치 수정
1 parent 303842e commit 7a55c72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:17-jre-alpine
22
WORKDIR /app
3-
COPY app.jar app.jar
3+
COPY build/libs/*.jar app.jar
44
EXPOSE 8080
55
# Cloud Run은 PORT 환경변수로 포트를 지정하므로 쉘 형식으로 확장
66
ENTRYPOINT ["sh", "-c", "java -jar -Dspring.profiles.active=dev -Duser.timezone=Asia/Seoul app.jar"]

0 commit comments

Comments
 (0)