This commit is contained in:
backuppc
2026-01-21 13:42:32 +09:00
parent 4afbb1c299
commit c1312c99ce
3 changed files with 47 additions and 7 deletions

View File

@@ -11,6 +11,6 @@ FROM nginx:stable-alpine
# 빌드된 파일들을 Nginx의 기본 경로로 복사
COPY --from=build /app/dist /usr/share/nginx/html
# (선택) 커스텀 nginx 설정을 넣고 싶다면 아래 주석 해제
# COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]