d4s-cdn-setup/build-images.sh

10 lines
178 B
Bash
Raw Normal View History

2023-12-01 15:03:26 +01:00
#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='dev'
else
tag=$1
fi
docker build -t hub.dev.d4science.org/cdn/cdn:$tag .
docker push hub.dev.d4science.org/cdn/cdn:$tag