Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-o signoz-mcp-server \
./cmd/server/

# Add MCP registry label
LABEL io.modelcontextprotocol.server.name="io.github.SigNoz/signoz-mcp-server"

# Final stage
FROM alpine:latest

Expand Down
1 change: 1 addition & 0 deletions Dockerfile.multi-arch
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ARG DISTROLESS_SHA="pass-a-valid-docker-sha-otherwise-this-will-fail"

FROM gcr.io/distroless/base@sha256:${DISTROLESS_SHA}
LABEL maintainer="signoz"
LABEL io.modelcontextprotocol.server.name="io.github.SigNoz/signoz-mcp-server"
WORKDIR /usr/local/signoz-mcp-server

ARG OS="linux"
Expand Down
Loading