diff --git a/Makefile b/Makefile index 7d28655..d1da7df 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ docker-login: docker-test: $(eval CONTAINER=$(shell docker run --rm --detach --publish-all $(DOCKER_IMAGE))) $(eval DOCKER_PORT=$(shell docker port $(CONTAINER) | cut -d ":" -f 2)) - curl -qfsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER) + curl -fsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER) docker-push: docker-test docker-login docker push $(DOCKER_IMAGE)