File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ build: ## build docker image
2020 docker build -t codacy/$(PROJECT_NAME ) :$(VERSION_NUMBER ) .
2121
2222push-docker-image : # # push the docker image to the registry (DOCKER_USER and DOCKER_PASS mandatory)
23- docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
23+ @ docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
2424 docker push codacy/$(PROJECT_NAME ) :$(VERSION_NUMBER )
2525
2626push-latest-docker-image : # # push the docker image with the "latest" tag to the registry (DOCKER_USER and DOCKER_PASS mandatory)
27- docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
27+ @ docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
2828 docker tag codacy/$(PROJECT_NAME ) :$(VERSION_NUMBER ) codacy/$(PROJECT_NAME ) :latest && \
2929 docker push codacy/$(PROJECT_NAME ) :latest
3030
You can’t perform that action at this time.
0 commit comments