feat: unlock all features and update README for LingXi CRM
CRM CI / build (push) Waiting to run

This commit is contained in:
yi
2026-06-09 15:59:52 +08:00
parent 0e9f2197cd
commit a205a7a49d
17 changed files with 569 additions and 67 deletions
+27
View File
@@ -0,0 +1,27 @@
FROM golang:1.21-alpine AS builder
WORKDIR /app
# Set Go Proxy if needed
# RUN go env -w GOPROXY=https://goproxy.cn,direct
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o main .
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/main .
COPY --from=builder /app/config.yaml .
COPY --from=builder /app/db/ ./db/
# Create source directory for file uploads
RUN mkdir -p /app/source
EXPOSE 8000
CMD ["./main"]