add wxmini

This commit is contained in:
2025-06-24 00:11:19 +08:00
parent b0e47d1658
commit 06eb69b39f
19 changed files with 508 additions and 30 deletions

View File

@@ -15,6 +15,7 @@ ADD go.sum .
RUN go mod download
COPY . .
COPY app/main/api/etc /app/etc
COPY app/main/api/static /app/static
RUN go build -ldflags="-s -w" -o /app/main app/main/api/main.go
@@ -27,5 +28,6 @@ ENV TZ Asia/Shanghai
WORKDIR /app
COPY --from=builder /app/main /app/main
COPY --from=builder /app/etc /app/etc
COPY --from=builder /app/static /app/static
CMD ["./main", "-f", "etc/main.yaml"]