feat: tao-mcp-go core features
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user