Skip to content

Commit 4148493

Browse files
committed
fix: TT-513 change make publish
1 parent 254190e commit 4148493

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,7 @@ remove_prod: ## Delete container timetracker_ui_prod.
7171
docker rm timetracker_ui_prod
7272

7373
.PHONY: publish_prod
74-
<<<<<<< HEAD
75-
publish_prod: ## Publish the container image timetracker_ui_prod.
76-
docker tag timetracker_ui_prod:$(image_tag) $(registry_url)/timetracker_ui_prod:$(image_tag)
77-
docker push $(registry_url)/timetracker_ui_prod:$(image_tag)
78-
79-
.PHONY: login
80-
login: ## Login in respository of docker images.
81-
az acr login --name $(acr)
82-
=======
83-
publish_prod: require-acr-arg require-image_tag-arg ## Upload a docker image to the prod azure container registry acr=<name_of_the_azure_container_registry> image_tag=<tag_for_the_image>
74+
publish_prod: ## Upload a docker image to the prod azure container registry acr=<name_of_the_azure_container_registry> image_tag=<tag_for_the_image>
8475
docker tag timetracker_ui_prod:latest $(acr).azurecr.io/timetracker_ui:$(image_tag)
8576
docker push $(acr).azurecr.io/timetracker_ui:$(image_tag)
8677

@@ -104,4 +95,3 @@ require-%-tool:
10495
echo "ERROR: [$*] not found"; \
10596
exit 1; \
10697
fi
107-
>>>>>>> master

0 commit comments

Comments
 (0)