서브도메인 배포 작업
Build & Deploy to K8s / build-and-deploy (push) Successful in 6s

This commit is contained in:
2026-04-24 17:49:16 +09:00
parent 8be7e16e56
commit 8c861144dc
15 changed files with 1196 additions and 463 deletions
+3 -1
View File
@@ -16,7 +16,9 @@ RUN ./gradlew bootJar --no-daemon
FROM eclipse-temurin:21-jre-alpine AS runner
WORKDIR /app
RUN apk add --no-cache curl
# postgresql16-client: 회사 프로비저닝 시 pg_dump 로 스키마 복사.
# 서버 PG 16.x 와 버전 맞춤 (alpine 기본 postgresql-client 는 18 이라 불일치).
RUN apk add --no-cache curl postgresql16-client
COPY --from=build /app/build/libs/*.jar app.jar