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