Files
invyone_homepage/Dockerfile
T
chpark 79c1d4ac82
Build & Deploy Homepage / build-and-deploy (push) Successful in 9s
feat: initial homepage with k8s auto-deploy
- 반응형 랜딩 페이지 (hero, features, how-it-works, solutions, AI agent, use cases, architecture, testimonials, FAQ, CTA)
- 모든 체험/로그인 CTA는 https://solution.invyone.com/login 으로 연결
- Dockerfile + nginx 설정으로 정적 파일 서빙
- k8s manifests (namespace/deployment/service NodePort 30082)
- Gitea Actions 자동 배포 워크플로우
2026-04-20 15:16:03 +09:00

10 lines
262 B
Docker

FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY homepage.html /usr/share/nginx/html/index.html
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget -qO- http://localhost/ >/dev/null || exit 1