fix(tksafety): Dockerfile *.html 와일드카드로 변경하여 HTML 404 해결

개별 COPY 대신 와일드카드 사용으로 모든 HTML 파일 nginx에 포함

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-13 14:36:34 +09:00
parent 6a20056e05
commit 03119a0849

View File

@@ -1,7 +1,6 @@
FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/index.html
COPY education.html /usr/share/nginx/html/education.html
COPY *.html /usr/share/nginx/html/
COPY static/ /usr/share/nginx/html/static/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]