From 1c9cddf93d30ac466f3e53e3b5204680ef7c335f Mon Sep 17 00:00:00 2001 From: "DESKTOP-V763RJ7\\Administrator" <835606593@qq.com> Date: Wed, 7 Jan 2026 17:50:38 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E5=85=A8=E5=A5=97=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 25632c6..1c6deb0 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,11 +1,12 @@ -FROM alpine:latest +FROM alpine:3.23.2 RUN apk add --no-cache tzdata && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ echo "Asia/Shanghai" > /etc/timezone -COPY robot/ /app/ -RUN chmod 777 /app/server-robot +COPY service-robot /app/service-robot +COPY config /app/config +RUN chmod 777 /app/service-robot WORKDIR /app -CMD ["./server-robot"] \ No newline at end of file +CMD ["./service-robot"] \ No newline at end of file