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