This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Server/robot/Dockerfile

11 lines
248 B
Docker

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"]