Add "cert-info" target to print details of the public certificate
diff --git a/Makefile b/Makefile
index ed55dc2..998a567 100644
--- a/Makefile
+++ b/Makefile
@@ -11,4 +11,8 @@
 copy:
 	sudo docker run -v ${PWD}:/host:z ${TAG} cp -r /build/install /host
 
-.PHONY: build build-no-cache copy
+# Print details of the public certificate
+cert-info:
+	openssl x509 -inform der -in neverware.cer -noout -text
+
+.PHONY: build build-no-cache cert-info copy