중간세이브 - 메뉴수정 - INVYONE 스튜디오 작업

This commit is contained in:
2026-04-16 00:32:19 +09:00
parent 1aa48cc0bb
commit de7ab9b7e3
155 changed files with 8227 additions and 8277 deletions
+5 -2
View File
@@ -18,5 +18,8 @@ RUN ./gradlew dependencies --no-daemon || true
EXPOSE 8081
# 개발 서버 시작 (spring-boot-devtools 활용)
CMD ["./gradlew", "bootRun", "--no-daemon"]
# 개발 서버 시작 (spring-boot-devtools + continuous classes 리빌드)
# 백그라운드: `./gradlew classes -t` 가 .java 변경 감지해 .class 재컴파일
# 포그라운드: `./gradlew bootRun` 이 앱 실행, DevTools 가 build/classes 변경 감지해 자동 리로드
# 주의: --continuous 는 gradle daemon 필요 → --no-daemon 제거
CMD ["sh", "-c", "./gradlew classes -t & exec ./gradlew bootRun"]