conductor-worker-python/build-d4science.sh

11 lines
241 B
Bash
Raw Permalink Normal View History

2022-07-28 18:02:21 +02:00
#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -t nubisware/nubisware-conductor-worker-py-d4s:$tag -f docker/d4science/Dockerfile .
docker push nubisware/nubisware-conductor-worker-py-d4s:$tag