You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
#dotnet restore
|
|
rm -rf ./pub
|
|
dotnet publish "$(pwd)/src/Web/Microsoft.eShopOnContainers.WebMVC/project.json" -o "$(pwd)/pub/webMVC"
|
|
dotnet publish "$(pwd)/src/Services/Catalog/Catalog.API/project.json" -o "$(pwd)/pub/catalog"
|
|
dotnet publish "$(pwd)/src/Services/Ordering/Ordering.API/project.json" -o "$(pwd)/pub/ordering"
|
|
|
|
docker build -t eshop/web "$(pwd)/pub/webMVC"
|
|
docker build -t eshop/catalog.api "$(pwd)/pub/catalog"
|
|
docker build -t eshop/ordering.api "$(pwd)/pub/ordering"
|