Skip to content

Commit b38b4c7

Browse files
committed
fix makefile
1 parent 6d31865 commit b38b4c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ testdev: ## Run all tests on docker container timetracker_ui at the Dev
5050
docker exec timetracker_ui bash -c "npm run ci-test"
5151

5252
.PHONY: publish
53-
publish: require-image_tag-arg ## Upload a docker image to the stage azure container registry acr=<name_of_the_azure_container_registry> image_tag=<tag_for_the_image>
53+
publish: require-image_tag-arg ## Upload a docker image to the stage AWS container registry image_tag=<tag_for_the_image>
5454
docker tag timetracker_ui:latest 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/stage-ui:$(image_tag)
5555
docker push 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/stage-ui:$(image_tag)
5656

@@ -80,7 +80,7 @@ remove_prod: ## Delete container timetracker_ui_prod.
8080
docker rm timetracker_ui_prod
8181

8282
.PHONY: publish_prod
83-
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>
83+
publish_prod: require-image_tag-arg ## Upload a docker image to the prod AWS container registry image_tag=<tag_for_the_image>
8484
docker tag timetracker_ui_prod:latest 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/prod-ui:$(image_tag)
8585
docker push 568748651446.dkr.ecr.us-east-1.amazonaws.com/time-tracker/prod-ui:$(image_tag)
8686

0 commit comments

Comments
 (0)