7 lines
61 B
Bash
7 lines
61 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
docker build -t ium .
|
||
|
docker run -it ium
|