Skip to content

Commit

Permalink
Merge pull request #316 from filecoin-project/feat/add_docker_push
Browse files Browse the repository at this point in the history
Feat/add docker push
  • Loading branch information
simlecode authored Apr 4, 2023
2 parents d1cd381 + 48e8b72 commit 26a2f8a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,10 @@ TAG:=test
docker: $(BUILD_DEPS)
curl -O https://raw.githubusercontent.com/filecoin-project/venus-docs/master/script/docker/dockerfile
docker build --build-arg https_proxy=$(BUILD_DOCKER_PROXY) --build-arg BUILD_TARGET=venus-market -t venus-market .
docker tag venus-market filvenus/venus-market:$(TAG)
docker tag venus-market $(PRIVATE_REGISTRY)/filvenus/venus-market:$(TAG)
docker build --build-arg https_proxy=$(BUILD_DOCKER_PROXY) --build-arg BUILD_TARGET=market-client -t market-client .
docker tag market-client $(PRIVATE_REGISTRY)/filvenus/market-client:$(TAG)

docker-push: docker
docker push $(PRIVATE_REGISTRY)/filvenus/venus-market:$(TAG)
docker push $(PRIVATE_REGISTRY)/filvenus/market-client:$(TAG)

0 comments on commit 26a2f8a

Please sign in to comment.