mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
10 lines
181 B
Bash
Executable File
10 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OUTPUT_DIR=${1:-'bin/Publish'}
|
|
|
|
rm -rf src/Podsync/$OUTPUT_DIR
|
|
|
|
dotnet restore
|
|
dotnet publish --configuration release --output $OUTPUT_DIR
|
|
|
|
docker-compose up -d --build |