From c1ccedacb249440fa3447a0a5870f70a41a9dd6b Mon Sep 17 00:00:00 2001 From: Patrick Hoefler Date: Sat, 28 Mar 2026 10:05:15 +0100 Subject: [PATCH 1/2] docs: fix README build requirements and add installation links - Remove Go as explicit prerequisite (mise install handles it via .go-version) - Add missing `mise install` step to native build instructions - Link Docker and Homebrew headings for consistency with mise/Graphviz Co-Authored-By: Claude Sonnet 4.6 --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3d11664..734fe53 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Supports multiple output formats (PDF, SVG, PNG), a legend, and layout customiza Run `dockerfilegraph` in your project directory to generate a `Dockerfile.pdf` with your build graph. -#### Docker +#### [Docker](https://www.docker.com/) ```shell docker run --rm --user "$(id -u):$(id -g)" \ @@ -59,7 +59,7 @@ docker run --rm --user "$(id -u):$(id -g)" \ ghcr.io/patrickhoefler/dockerfilegraph ``` -#### Homebrew +#### [Homebrew](https://brew.sh/) ```shell brew install patrickhoefler/tap/dockerfilegraph @@ -79,16 +79,17 @@ dockerfilegraph - **Native Build** - *Requirements: [Go](https://go.dev/), [mise](https://mise.jdx.dev/) and [Graphviz](https://graphviz.org/)* + *Requirements: [mise](https://mise.jdx.dev/) and [Graphviz](https://graphviz.org/)* ```shell + mise install mise run build ./dockerfilegraph ``` - **Container Build** - *Requirements: [Go](https://go.dev/), [mise](https://mise.jdx.dev/) and Docker* + *Requirements: [mise](https://mise.jdx.dev/) and [Docker](https://www.docker.com/)* ```shell mise run build-docker-image From cf9e29673cba28fdd9577e09f7c254aa358011d7 Mon Sep 17 00:00:00 2001 From: Patrick Hoefler Date: Sat, 28 Mar 2026 10:25:43 +0100 Subject: [PATCH 2/2] docs: add missing mise install to container build instructions Co-Authored-By: Claude Sonnet 4.6 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 734fe53..c817b71 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ dockerfilegraph *Requirements: [mise](https://mise.jdx.dev/) and [Docker](https://www.docker.com/)* ```shell + mise install mise run build-docker-image docker run \ --rm \