File size: 272 Bytes
bd12dd4 e2bb7fc bd12dd4 e2bb7fc | 1 2 3 4 5 6 7 8 9 | $ErrorActionPreference = "Stop"
$portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json
$port = $portConfig.port
$imageName = "dateutil-mcp"
docker build -t $imageName .
docker run --rm -p "${port}:${port}" -e MCP_TRANSPORT=http -e MCP_PORT=$port $imageName
|