#!/bin/bash set -euxo pipefail UUID=$(uuidgen) cd build || exit docker build . -t "$UUID:latest" docker run -it "$UUID:latest"