From d45b051bc522c99d7664f15bb8ea4245a7553fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=B2=A9=E5=B2=A9?= Date: Thu, 25 Dec 2025 17:54:12 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E9=BB=98=E8=AE=A4htm?= =?UTF-8?q?l=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3f8e341..a3e4a97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ FROM docker.liyanyan.work/library/nginx:alpine # Copy our default server config; site content is not baked into the image. COPY nginx/default.conf /etc/nginx/conf.d/default.conf +# Copy static site content +COPY example/site/index.html /usr/share/nginx/html/index.html + EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]