Skip to content

Commit

Permalink
feat: Add targets for identity-service
Browse files Browse the repository at this point in the history
  • Loading branch information
tushar5526 committed Jun 20, 2023
1 parent d5a8b69 commit af2000b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ build: java/registry/target/registry.jar
make -C services/public-key-service docker
make -C services/context-proxy-service docker
docker build -t dockerhub/sunbird-rc-nginx .
make -C services/identity-service/ docker

java/registry/target/registry.jar: $(SOURCES)
echo $(SOURCES)
Expand Down Expand Up @@ -94,6 +95,7 @@ release: test
docker push dockerhub/sunbird-rc-context-proxy-service:$(RELEASE_VERSION)
docker push dockerhub/sunbird-rc-nginx:latest
docker push dockerhub/sunbird-rc-nginx:$(RELEASE_VERSION)
docker push dockerhub/sunbird-rc-identity-service:$(RELEASE_VERSION)
@cd tools/cli/ && npm publish


6 changes: 6 additions & 0 deletions services/identity-service/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
IMAGE:=dockerhub/sunbird-rc-identity-service

docker:
@docker build -t $(IMAGE) .
publish:
@docker push $(IMAGE)

0 comments on commit af2000b

Please sign in to comment.