Skip to content

Commit

Permalink
Updated to use appropriate binaries for each architecture in each doc…
Browse files Browse the repository at this point in the history
…ker file
  • Loading branch information
gadgethm committed Jun 7, 2022
1 parent b9f0d9a commit 8cb0410
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ changelog:
dockers:
- image_templates:
- 'skibish/ddns:{{ .Tag }}-amd64'
goos: linux
goarch: amd64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
Expand All @@ -52,6 +54,8 @@ dockers:
- "--platform=linux/amd64"
- image_templates:
- 'skibish/ddns:{{ .Tag }}-arm64'
goos: linux
goarch: arm64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
Expand All @@ -64,6 +68,9 @@ dockers:
- "--platform=linux/arm64"
- image_templates:
- 'skibish/ddns:{{ .Tag }}-armv6'
goos: linux
goarch: arm
goarm: 6
dockerfile: Dockerfile
use: buildx
build_flag_templates:
Expand All @@ -76,6 +83,9 @@ dockers:
- "--platform=linux/arm/v6"
- image_templates:
- 'skibish/ddns:{{ .Tag }}-armv7'
goos: linux
goarch: arm
goarm: 7
dockerfile: Dockerfile
use: buildx
build_flag_templates:
Expand All @@ -88,6 +98,8 @@ dockers:
- "--platform=linux/arm/v7"
- image_templates:
- 'skibish/ddns:{{ .Tag }}-i386'
goos: linux
goarch: 386
dockerfile: Dockerfile
use: buildx
build_flag_templates:
Expand Down

0 comments on commit 8cb0410

Please sign in to comment.