初始化项目

This commit is contained in:
BBIT-Kai
2026-05-26 11:51:57 +08:00
commit 6878f4ea5f
15 changed files with 4258 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM scratch
WORKDIR /app
# buildx 自动注入
ARG TARGETOS
ARG TARGETARCH
COPY build/release/${TARGETOS}_${TARGETARCH} /app
COPY ca-certificates.crt /etc/ssl/certs/
CMD ["./main"]