We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad834ab commit 8b6ac23Copy full SHA for 8b6ac23
Makefile
@@ -331,6 +331,16 @@ docker-build-test: ## Build test Docker image
331
docker build -t $(DOCKER_ORG)/mina-rust-test:$(GIT_COMMIT) \
332
-f node/testing/docker/Dockerfile.test node/testing/docker/
333
334
+# Docker push targets
335
+
336
+.PHONY: docker-push-mina
337
+docker-push-mina: ## Push main Mina Docker image to DockerHub
338
+ @docker push $(DOCKER_ORG)/mina-rust:$(GIT_COMMIT)
339
340
+.PHONY: docker-push-frontend
341
+docker-push-frontend: ## Push frontend Docker image to DockerHub
342
+ @docker push $(DOCKER_ORG)/mina-rust-frontend:$(GIT_COMMIT)
343
344
# Node running targets
345
.PHONY: run-node
346
run-node: build-release ## Run a basic node (NETWORK=devnet, VERBOSITY=info)
0 commit comments