goldenChat base source add

This commit is contained in:
aidev
2026-05-23 15:11:48 +09:00
commit a4ea7762b5
2081 changed files with 1155760 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Production stage only - use local build
FROM nginx:alpine
# nginx 설정 복사
COPY nginx.conf /etc/nginx/conf.d/default.conf
# SSL 인증서 복사
COPY ssl/server.crt /etc/nginx/ssl/server.crt
COPY ssl/server.key /etc/nginx/ssl/server.key
# 로컬에서 빌드된 파일 복사
COPY build /usr/share/nginx/html
# HTTP 및 HTTPS 포트 노출
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]