From 44bd71cba92cbe79dda75fd70a73dd0d2fc2904d Mon Sep 17 00:00:00 2001 From: malik masis Date: Mon, 26 Sep 2022 17:34:38 +0300 Subject: [PATCH] Added Cms service configuration to build images --- build/build-images-locally.sh | 5 +++++ build/build-images.sh | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/build/build-images-locally.sh b/build/build-images-locally.sh index 85237331..5957b875 100755 --- a/build/build-images-locally.sh +++ b/build/build-images-locally.sh @@ -74,4 +74,9 @@ cd ${currentFolder}/services/ordering/src/EShopOnAbp.OrderingService.HttpApi.Hos dotnet publish -c Release docker build -f Dockerfile.local --force-rm -t "eshoponabp/service-ordering:${IMAGE_TAG}" . +echo "**************** BUILDING CMSKIT-SERVICE 12/$total ****************" +cd ${currentFolder}/services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host +dotnet publish -c Release +docker build -f Dockerfile.local --force-rm -t "eshoponabp/service-cmskit:${IMAGE_TAG}" . + echo "ALL COMPLETED" \ No newline at end of file diff --git a/build/build-images.sh b/build/build-images.sh index 79b96680..10685848 100755 --- a/build/build-images.sh +++ b/build/build-images.sh @@ -60,4 +60,8 @@ echo "**************** BUILDING ORDERING-SERVICE 11/$total ****************" cd ${currentFolder}/services/ordering/src/EShopOnAbp.OrderingService.HttpApi.Host docker build --force-rm -t "eshoponabp/service-ordering:${IMAGE_TAG}" . +echo "**************** BUILDING CMSKIT-SERVICE 12/$total ****************" +cd ${currentFolder}/services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host +docker build --force-rm -t "eshoponabp/service-cmskit:${IMAGE_TAG}" . + echo "ALL COMPLETED" \ No newline at end of file