mirror of https://github.com/bitwarden/web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
639 B
33 lines
639 B
#!/usr/bin/env bash |
|
set -e |
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|
|
|
echo "" |
|
|
|
if [ $# -gt 1 -a "$1" == "push" ] |
|
then |
|
TAG=$2 |
|
echo "# Pushing Web ($TAG)" |
|
echo "" |
|
docker push bitwarden/web:$TAG |
|
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 app" |
|
echo "npm version $(npm --version)" |
|
npm install |
|
npm run sub:update |
|
npm run dist:selfhost |
|
|
|
echo "" |
|
echo "Building docker image" |
|
docker --version |
|
docker build -t bitwarden/web $DIR/. |
|
fi
|
|
|