From 03119a0849be49b8c527b6488feb33ab60411422 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Fri, 13 Mar 2026 14:36:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(tksafety):=20Dockerfile=20*.html=20?= =?UTF-8?q?=EC=99=80=EC=9D=BC=EB=93=9C=EC=B9=B4=EB=93=9C=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=ED=95=98=EC=97=AC=20HTML=20404=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 개별 COPY 대신 와일드카드 사용으로 모든 HTML 파일 nginx에 포함 Co-Authored-By: Claude Opus 4.6 --- tksafety/web/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tksafety/web/Dockerfile b/tksafety/web/Dockerfile index e77648c..dc12d9e 100644 --- a/tksafety/web/Dockerfile +++ b/tksafety/web/Dockerfile @@ -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;"]