Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Visual Studio Code
.vscode
*.code-workspace

# Binaries for programs and plugins
*.exe
Expand Down
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ 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
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
homepage: https://github.com/patrickhoefler/dockerfilegraph
description: 'Visualize your multi-stage Dockerfile'
dependencies:
- graphviz
- formula: graphviz
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 /

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Loading