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/gateway/Dockerfile

12 lines
298 B
Docker

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 server-gateway /app/server-gateway
COPY config /app/config
RUN chmod 777 /app/server-gateway
WORKDIR /app
CMD ["./server-gateway"]