12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/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
|