1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

revamping the build scripts (#1620)

This commit is contained in:
Joseph Flinn
2021-10-08 09:53:56 -07:00
committed by GitHub
parent 45ab7e2e85
commit ee7b608a46
26 changed files with 6321 additions and 120 deletions

View File

@ -25,9 +25,9 @@
"Console": {
"IncludeScopes": true,
"LogLevel": {
"Default": "Warning",
"System": "Warning",
"Microsoft": "Warning",
"Default": "Debug",
"System": "Debug",
"Microsoft": "Debug",
"Microsoft.Hosting.Lifetime": "Information"
}
}

View File

@ -13,10 +13,3 @@ echo "Clean"
dotnet clean "$DIR/Notifications.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
echo "Publish"
dotnet publish "$DIR/Notifications.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
if [ "$1" != "nodocker" ]
then
echo -e "\nBuilding docker image"
docker --version
docker build -t bitwarden/notifications "$DIR/."
fi