1
0
mirror of https://github.com/bitwarden/server synced 2026-01-16 15:33:19 +00:00

build and include notifications docker

This commit is contained in:
Kyle Spearrin
2018-08-17 18:14:25 -04:00
parent 5766c1f6f3
commit ca3ecc0163
9 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo -e "\n## Building Notifications"
echo -e "\nBuilding app"
echo ".NET Core version $(dotnet --version)"
echo "Restore"
dotnet restore $DIR/Notifications.csproj
echo "Clean"
dotnet clean $DIR/Notifications.csproj -c "Release" -o $DIR/obj/Docker/publish
echo "Publish"
dotnet publish $DIR/Notifications.csproj -c "Release" -o $DIR/obj/Docker/publish
echo -e "\nBuilding docker image"
docker --version
docker build -t bitwarden/notifications $DIR/.