versioning and tagging

This commit is contained in:
Kyle Spearrin 2017-10-02 16:39:37 -04:00
parent 7b8b4dc164
commit f0fbf664d4
2 changed files with 32 additions and 12 deletions

View File

@ -1,4 +1,4 @@
FROM bitwarden/server
FROM bitwarden/server:beta
WORKDIR /app
COPY ./dist .

View File

@ -4,16 +4,36 @@ set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo ""
echo "# Building Web"
echo ""
echo "Building app"
echo "npm version $(npm --version)"
echo "gulp version $(gulp --version)"
npm install
gulp dist:selfHosted
if [ $# -gt 0 -a "$1" == "push" ]
then
echo "# Pushing Web"
echo ""
if [ $# -gt 1 ]
then
TAG=$2
docker push bitwarden/web:$TAG
else
docker push bitwarden/web
fi
elif [ $# -gt 1 -a "$1" == "tag" ]
then
TAG=$2
echo "Tagging Web as '$TAG'"
docker tag bitwarden/web bitwarden/web:$TAG
else
echo "# Building Web"
echo ""
echo "Building docker image"
docker --version
docker build -t bitwarden/web $DIR/.
echo ""
echo "Building app"
echo "npm version $(npm --version)"
echo "gulp version $(gulp --version)"
npm install
gulp dist:selfHosted
echo ""
echo "Building docker image"
docker --version
docker build -t bitwarden/web $DIR/.
fi