feat 机器人

This commit is contained in:
2025-12-17 09:56:01 +08:00
parent 0274262591
commit d602a16b15
14 changed files with 540 additions and 0 deletions

11
Server/robot/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest
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
WORKDIR /app
CMD ["./server-robot"]