This commit is contained in:
backuppc
2026-01-21 13:43:43 +09:00
parent c1312c99ce
commit 18b746e025
3 changed files with 7 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ RUN npm run build
# 2단계: 실행 (Nginx)
FROM nginx:stable-alpine
# 빌드된 파일들을 Nginx의 기본 경로로 복사
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/dist /usr/share/nginx/html/ftp
# (선택) 커스텀 nginx 설정을 넣고 싶다면 아래 주석 해제
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80