1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00
bitwarden/src/Billing/build.sh
Michał Chęciński d4bb3c30b5
Create Dockerfile for Billing (#2477)
* build script for billing

* Add entrypoint script

* Add dockerfile and docker ignore
2022-12-07 09:51:25 +01:00

15 lines
431 B
Bash
Executable File

#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo -e "\n## Building Billing"
echo -e "\nBuilding app"
echo -e ".NET Core version $(dotnet --version)"
echo -e "Restore"
dotnet restore $DIR/Billing.csproj
echo -e "Clean"
dotnet clean $DIR/Billing.csproj -c "Release" -o $DIR/obj/build-output/publish
echo -e "Publish"
dotnet publish $DIR/Billing.csproj -c "Release" -o $DIR/obj/build-output/publish