12 lines
210 B
Bash
12 lines
210 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DOCKERFILE=.buildbot/tox-bionic/Dockerfile
|
||
|
|
||
|
docker build -t pybm/tox -f $DOCKERFILE .
|
||
|
|
||
|
if [ $? -gt 0 ]; then
|
||
|
docker build --no-cache -t pybm/tox -f $DOCKERFILE .
|
||
|
fi
|
||
|
|
||
|
docker run --rm -it pybm/tox
|