update build-images for Mac

Until adding these, the project would not build correctly on a Mac.
This commit is contained in:
Bill Wagner 2017-02-15 10:44:59 -05:00
parent 68ad1895c6
commit ffeabf8f65

8
build-images.sh Normal file → Executable file
View File

@ -1,12 +1,16 @@
#!/bin/sh
#dotnet restore
dotnet restore
rm -rf ./pub
dotnet publish "$(pwd)/src/Web/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"
dotnet publish "$(pwd)/src/Services/Basket/Basket.API/project.json" -o "$(pwd)/pub/basket"
dotnet publish "$(pwd)/src/Services/Identity/Identity.API/project.json" -o "$(pwd)/pub/identity"
dotnet publish "$(pwd)/src/Web/WebSPA/eShopOnContainers.WebSPA/project.json" -o "$(pwd)/pub/WebSPA"
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"
docker build -t eshop/basket.api "$(pwd)/pub/basket"
docker build -t eshop/basket.api "$(pwd)/pub/basket"
docker build -t eshop/identity "$(pwd)/pub/identity"
docker build -t eshop/webspa "$(pwd)/pub/WebSPA"