From e5537aaa1ee2641133735579f7c85987bee1750e Mon Sep 17 00:00:00 2001 From: hhs <386998068@qq.com> Date: Fri, 19 Jun 2026 23:23:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20Dockerfile=20?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E9=98=B6=E6=AE=B5=E7=BC=BA=E5=B0=91=20config?= =?UTF-8?q?.yaml=20=E5=AF=BC=E8=87=B4=E5=AE=B9=E5=99=A8=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=20panic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index dd93711..f2bfb1b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -21,8 +21,9 @@ RUN apk add --no-cache ca-certificates tzdata WORKDIR /app -# 复制二进制(配置通过 docker-compose env_file 注入) +# 复制二进制和配置文件(敏感配置通过 docker-compose env_file 注入覆盖) COPY --from=builder /camtalk . +COPY config.yaml . EXPOSE 8080 -- 2.49.1