...
A typical build command could look like this:
Code Block language bash title Build Command linenumbers true #!/bin/sh IMAGE_NAME="Master-1-13" docker build --no-cache --rm --tag=$IMAGE_NAME --file=$SCRIPT_HOME./build/Dockerfile --network=js --build-arg="USER_ID=$UID" ./build
...