conductor-worker-python/build-base.sh

11 lines
238 B
Bash
Raw Permalink Normal View History

2020-10-30 19:19:31 +01:00
#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -t nubisware/nubisware-conductor-worker-py-base:$tag -f docker/base/Dockerfile .
docker push nubisware/nubisware-conductor-worker-py-base:$tag