10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
UUID=$(uuidgen)
|
|
|
|
cd build || exit
|
|
docker build . -t "$UUID:latest"
|
|
docker run -it "$UUID:latest"
|