| $ErrorActionPreference = "Stop" | |
| $portConfig = Get-Content -Path "port.json" -Raw | ConvertFrom-Json | |
| $port = $portConfig.port | |
| $imageName = "dedupe-mcp" | |
| docker build -t $imageName . | |
| docker run --rm -it -p "${port}:${port}" $imageName | |
| $ErrorActionPreference = "Stop" | |
| $portConfig = Get-Content -Path "port.json" -Raw | ConvertFrom-Json | |
| $port = $portConfig.port | |
| $imageName = "dedupe-mcp" | |
| docker build -t $imageName . | |
| docker run --rm -it -p "${port}:${port}" $imageName | |