Skip to content

Commit 0e312bf

Browse files
authored
fix: use correct label in Docker image (#328)
1 parent c23dfac commit 0e312bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install dependencies
6767
run: |
6868
sudo apt-get update && sudo apt-get install -y jq
69-
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.3.0/mcp-publisher_1.3.0_linux_amd64.tar.gz" | tar xz mcp-publisher
69+
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.3.0/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
7070
chmod +x mcp-publisher
7171
sudo mv mcp-publisher /usr/local/bin/
7272

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN go build -o mcp-grafana ./cmd/mcp-grafana
1919
# Final stage
2020
FROM debian:bullseye-slim
2121

22-
LABEL io.modelcontextprotocol.server.name="io.modelcontextprotocol.anonymous/mcp-grafana"
22+
LABEL io.modelcontextprotocol.server.name="io.github.grafana/mcp-grafana"
2323

2424
# Install ca-certificates for HTTPS requests
2525
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)