Skip to content

Commit 59dd824

Browse files
authored
fix: update image name for mcp server in semantic release and Tiltfile (#82)
This pull request updates the naming convention for the MCP server Docker image to ensure consistency across the deployment workflow and local development configuration. **Docker image naming consistency:** * Changed the MCP server Docker image name from `rag-mcp` to `mcp-server` in the GitHub Actions workflow file `.github/workflows/semantic-release.yml` to match the actual service name. * Updated the `Tiltfile` to use `mcp-server` as the image name for the MCP server, aligning it with the registry and Helm chart expectations. fixes the following issue: #81
1 parent 0ba3f9a commit 59dd824

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
build-args: "dev=0"
102102
- name: mcp-server
103103
dockerfile: services/mcp-server/Dockerfile
104-
image: rag-mcp
104+
image: mcp-server
105105
build-args: "dev=0"
106106
- name: frontend
107107
dockerfile: services/frontend/apps/chat-app/Dockerfile

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ local_resource(
189189
################################## build mcp image and do live update ##################################################
190190
# NOTE: full image names should match the one in the helm chart values.yaml!
191191
registry = "ghcr.io/stackitcloud/rag-template"
192-
mcp_image_name = "rag-mcp"
192+
mcp_image_name = "mcp-server"
193193

194194
mcp_context = "./services/mcp-server"
195195
mcp_full_image_name = "%s/%s" % (registry, mcp_image_name)

0 commit comments

Comments
 (0)