mirror of https://github.com/dirtbags/moth.git
15 lines
387 B
Bash
Executable File
15 lines
387 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
read version < VERSION
|
|
|
|
cd $(dirname $0)
|
|
for img in moth moth-devel; do
|
|
echo "==== $img"
|
|
sudo docker build --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy --tag dirtbags/$img --tag dirtbags/$img:$version -f Dockerfile.$img .
|
|
[ "$1" = "-push" ] && docker push dirtbags/$img:$version && docker push dirtbags/$img:latest
|
|
done
|
|
|
|
exit 0
|