Files
Hyungi Ahn 6e5c1554d0 feat(tkpurchase): 협력업체 포탈 3→2단계 흐름 단순화 + 작업 이력 페이지
- 체크아웃 시 work_report 자동 생성 (checkout-with-report 통합 엔드포인트)
- 업무현황 입력 단계 제거, 작업자+시간만 입력하면 체크아웃 완료
- 협력업체 작업 이력 조회 페이지 신규 추가 (partner-history)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 13:50:07 +09:00

17 lines
640 B
Docker

FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/index.html
COPY daylabor.html /usr/share/nginx/html/daylabor.html
COPY schedule.html /usr/share/nginx/html/schedule.html
COPY workreport.html /usr/share/nginx/html/workreport.html
COPY workreport-summary.html /usr/share/nginx/html/workreport-summary.html
COPY accounts.html /usr/share/nginx/html/accounts.html
COPY partner-portal.html /usr/share/nginx/html/partner-portal.html
COPY partner-history.html /usr/share/nginx/html/partner-history.html
COPY static/ /usr/share/nginx/html/static/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]