Skip to content

Commit

Permalink
feat: Add linux arm64 docker image (cloudquery#14515)
Browse files Browse the repository at this point in the history

#### Summary

Backwards compatible way to do cloudquery#14506.

Also there's some work in progress to do multiple archs per single image goreleaser/goreleaser#4245

<!--
  • Loading branch information
erezrokah authored and hydratim committed Oct 20, 2023
1 parent 4e00ab2 commit 8f12986
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cli/.goreleaser.yaml
Expand Up @@ -19,6 +19,19 @@ dockers:
- "ghcr.io/cloudquery/cloudquery:latest"
- "ghcr.io/cloudquery/cloudquery:{{.Version}}"
- "ghcr.io/cloudquery/cloudquery:{{ .Major }}.{{ .Minor }}"
- "ghcr.io/cloudquery/cloudquery:latest-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
- "ghcr.io/cloudquery/cloudquery:{{.Version}}-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
- "ghcr.io/cloudquery/cloudquery:{{ .Major }}.{{ .Minor }}-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/cloudquery/cloudquery"
-
goos: linux
goarch: arm64
dockerfile: Dockerfile.goreleaser
image_templates:
- "ghcr.io/cloudquery/cloudquery:latest-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
- "ghcr.io/cloudquery/cloudquery:{{.Version}}-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
- "ghcr.io/cloudquery/cloudquery:{{ .Major }}.{{ .Minor }}-{{.Runtime.Goos}}-{{.Runtime.Goarch}}"
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/cloudquery/cloudquery"

Expand Down

0 comments on commit 8f12986

Please sign in to comment.