diff --git a/.gitignore b/.gitignore index 9278f7b..73ab945 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Visual Studio Code .vscode +*.code-workspace # Binaries for programs and plugins *.exe diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 54f6454..cc61c2b 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -30,7 +30,7 @@ dockers: - 'ghcr.io/patrickhoefler/dockerfilegraph:{{ .Major }}.{{ .Minor }}-alpine' - 'ghcr.io/patrickhoefler/dockerfilegraph:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-alpine' -brews: +homebrew_casks: - repository: owner: patrickhoefler name: homebrew-tap @@ -38,4 +38,4 @@ brews: homepage: https://github.com/patrickhoefler/dockerfilegraph description: 'Visualize your multi-stage Dockerfile' dependencies: - - graphviz + - formula: graphviz diff --git a/Dockerfile b/Dockerfile index 3095dde..9383244 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN apk add --update --no-cache \ # Run as non-root user USER app -# This only works after running `task build-linux` +# This only works after running `mise run build-linux` # or when using goreleaser COPY dockerfilegraph / diff --git a/README.md b/README.md index 3d11664..27839ca 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ docker run --rm --user "$(id -u):$(id -g)" \ #### Homebrew ```shell -brew install patrickhoefler/tap/dockerfilegraph +brew install --cask patrickhoefler/tap/dockerfilegraph dockerfilegraph ```