백엔드 Docker 빌드 실패로 배포가 막히던 문제를 수정한다.

테스트 컴파일 오류(RsiThresholdCrossSignalTest)와 -DskipTests 한계를 해결해
StrategyConditionThresholdNormalizer가 실제 서버 이미지에 포함되도록 한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Macbook
2026-06-18 00:30:10 +09:00
parent ea8576d756
commit bd6094f71f
3 changed files with 17 additions and 9 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ RUN mvn -f backend/pom.xml dependency:go-offline -q 2>/dev/null || true
# 소스 빌드
COPY backend/src ./backend/src
RUN mvn -f backend/pom.xml package -DskipTests -q
RUN mvn -f backend/pom.xml package -Dmaven.test.skip=true -q
# ── 2단계: 실행 ──────────────────────────────────────────────────────────────
FROM eclipse-temurin:21-jre-alpine AS production