added sep dockerfiles

This commit is contained in:
Tobias Kessels
2019-04-29 23:49:27 +02:00
parent 63996e7010
commit fb9c04a783
4 changed files with 68 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
docker build -t tabledevil/sep:latest -f sep_dev.dockerfile .
tag=$(docker run -it tabledevil/sep:latest version | grep -Pio "(?<=Dockertag: )[\d._]+" )
echo "NEW TAG : ${tag}"
docker tag tabledevil/sep tabledevil/sep:${tag}
docker push "tabledevil/sep:${tag}"
docker push "tabledevil/sep:latest"