We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c362098 commit b5dece4Copy full SHA for b5dece4
cs25-service/Dockerfile
@@ -11,7 +11,12 @@ COPY cs25-entity cs25-entity/
11
COPY cs25-common cs25-common/
12
13
# 테스트 생략하여 빌드 안정화
14
-RUN ./gradlew :cs25-service:bootJar --stacktrace --no-daemon
+# (빌드 시 MCP 비활성화 + gradlew 실행 권한 + 테스트 스킵)
15
+ENV SPRING_AI_MCP_CLIENT_ENABLED=false \
16
+ SPRING_AI_MCP_CLIENT_INITIALIZED=false
17
+RUN chmod +x ./gradlew
18
+RUN ./gradlew :cs25-service:bootJar --stacktrace --no-daemon -x test
19
+
20
FROM eclipse-temurin:17-jre-jammy
21
22
# 메타 정보
0 commit comments