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:
19
src/Notifications/build.sh
Normal file
19
src/Notifications/build.sh
Normal 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/.
|
||||
Reference in New Issue
Block a user