We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4789791 commit 026250bCopy full SHA for 026250b
docs/mcp-tools.md
@@ -39,11 +39,17 @@ Then configure your MCP client to connect to `http://localhost:8080/`.
39
You can self-host the Bicep MCP Server as a container using the published NuGet tool package. Create a `Dockerfile` with the following contents:
40
41
```dockerfile
42
-FROM mcr.microsoft.com/dotnet/sdk:10.0
+FROM mcr.microsoft.com/dotnet/sdk:10.0 AS install
43
44
RUN dotnet tool install --global Azure.Bicep.McpServer
45
46
-ENV PATH="$PATH:/root/.dotnet/tools"
+FROM mcr.microsoft.com/dotnet/aspnet:10.0
47
+
48
+COPY --from=install /root/.dotnet/tools /opt/tools
49
50
+ENV PATH="$PATH:/opt/tools"
51
52
+USER $APP_UID
53
54
EXPOSE 8080
55
0 commit comments