feat 初次提交

This commit is contained in:
2026-01-03 14:26:08 +08:00
parent ebeb244e1e
commit 887cb242e3
30 changed files with 1918 additions and 0 deletions

12
deploy/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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"]