mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2023-10-10 13:36:57 +02:00
12 lines
147 B
Bash
12 lines
147 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
script_dir=`cd $(dirname $0); pwd`
|
||
|
|
||
|
cd $script_dir
|
||
|
|
||
|
dotnet restore
|
||
|
dotnet publish
|
||
|
|
||
|
docker build . -t bitbetter/licenseGen # --squash
|
||
|
|