Skip to content

Commit

Permalink
Also build arm64 on CI for convenience?
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloemberg DevOps authored and Bloemberg DevOps committed Dec 11, 2024
1 parent 33ee693 commit 773c1d1
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions docker/compose.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

db-migrate:
Expand All @@ -19,7 +18,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

worker: &worker
Expand All @@ -28,7 +26,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

worker-nassl:
Expand All @@ -37,7 +34,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

worker-slow:
Expand All @@ -46,7 +42,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

beat:
Expand All @@ -55,7 +50,6 @@ services:
dockerfile: docker/Dockerfile
target: app
platforms:
# due to nassl
- "linux/amd64"

unbound:
Expand All @@ -64,7 +58,6 @@ services:
dockerfile: docker/Dockerfile
target: unbound
platforms:
# due to nassl
- "linux/amd64"

resolver-permissive:
Expand All @@ -73,7 +66,6 @@ services:
dockerfile: docker/Dockerfile
target: unbound
platforms:
# due to nassl
- "linux/amd64"

resolver-validating:
Expand All @@ -82,23 +74,31 @@ services:
dockerfile: docker/Dockerfile
target: unbound
platforms:
# due to nassl
- "linux/amd64"

cron:
build:
context: ..
dockerfile: docker/util.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

cron-docker:
build:
context: ..
dockerfile: docker/util.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

grafana:
build:
context: ..
dockerfile: docker/grafana.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

test:
build:
Expand All @@ -108,23 +108,31 @@ services:
args:
RELEASE: 0.0.0-dev0
platforms:
# due to nassl
- "linux/amd64"

test-runner:
build:
context: ..
dockerfile: docker/test-runner.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

test-runner-development-environment:
build:
context: ..
dockerfile: docker/test-runner.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

test-runner-live:
build:
context: ..
dockerfile: docker/test-runner.Dockerfile
platforms:
- "linux/amd64"
- "linux/arm64"

tools:
build:
Expand All @@ -134,7 +142,6 @@ services:
args:
RELEASE: 0.0.0-dev0
platforms:
# due to nassl
- "linux/amd64"

mock-resolver:
Expand All @@ -143,5 +150,4 @@ services:
dockerfile: docker/Dockerfile
target: unbound
platforms:
# due to nassl
- "linux/amd64"

0 comments on commit 773c1d1

Please sign in to comment.