feat: tao-mcp-go core features

This commit is contained in:
OpenClaw Agent
2026-03-14 16:16:32 +08:00
parent ebaf325222
commit a9c26fae45
7 changed files with 1604 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM golang:1.21-alpine AS builder
WORKDIR /app
COPY . .
RUN go build -o tao-mcp .
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/tao-mcp .
VOLUME ["/app/knowledge_ocean"]
EXPOSE 5001
CMD ["./tao-mcp"]