10 lines
137 B
Bash
Executable File
10 lines
137 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
tag=`uuidgen`
|
|
docker build . \
|
|
-t dotfiles:$tag \
|
|
--target test
|
|
|
|
docker run dotfiles:$tag
|