diff --git a/build.sh b/build.sh index 7c127a31b..1ca0a6af0 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,10 @@ #!/bin/sh #dotnet restore rm -rf ./pub -dotnet publish "$(pwd)/src/Services/Catalog/Catalog.API/project.json" -o "$(pwd)/pub/catalog" 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" \ No newline at end of file +docker build -t eshop/catalog.api "$(pwd)/pub/catalog" +docker build -t eshop/ordering.api "$(pwd)/pub/ordering" \ No newline at end of file