File size: 242 Bytes
7917211
a0477b5
 
 
 
 
7917211
a0477b5
1
2
3
4
5
6
7
8
9
$ErrorActionPreference = "Stop"

$portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json
$port = [int]$portConfig.port
$imageName = "deepTools-mcp"

docker build -t $imageName .
docker run --rm -it -p "${port}:${port}" $imageName