포털 사이트 링크에 SSO 자동로그인 적용 (Coder/Gitea OIDC 시작 URL + 뱃지)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
0310700
2026-06-22 17:53:07 +09:00
parent 9eb3fd1b4c
commit 792b9b9c72
6 changed files with 59 additions and 4 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# AI DEV 포털 이미지. Kubero buildpack(node22 + npm install + node index.js)과 동일 구성.
# Kubero v3.1.1 buildpack 빌드잡이 harbor 단일세그먼트 경로로 push 실패하는 이슈 우회용:
# 이 이미지를 harbor.bokdev.in/kubero/ai-dev-portal-portal:main 으로 직접 push 하면
# Kubero 가 만든 web 파드가 그대로 pull 한다.
FROM node:22-slim
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install --omit=dev
COPY . .
ENV PORT=8080
EXPOSE 8080
CMD ["node", "index.js"]