From 00ac248247ee6629eba2577608cf73fc9c5a69ac Mon Sep 17 00:00:00 2001 From: Christopher Alexander Date: Wed, 26 Jul 2023 14:21:47 -0400 Subject: [PATCH] RACK-928: Slow Startup RiB Container on Apple M1 Enhancing github workflow to include AARCH64 (Apple Silicon) platform docker image. The linux/amd64 os/arch images were not performant on M1 machines. Solves: RACK-928 --- rack-box/rack-box-docker.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/rack-box/rack-box-docker.json b/rack-box/rack-box-docker.json index 94208a8b..d8ec819e 100644 --- a/rack-box/rack-box-docker.json +++ b/rack-box/rack-box-docker.json @@ -10,14 +10,25 @@ "builders": [ { + "name": "amd64", "type": "docker", - "changes": [ "ENTRYPOINT [ \"/usr/bin/python3\", \"/usr/bin/systemctl\" ]" ], "commit": true, "image": "ubuntu:22.04", "pull": false + }, + { + "name": "arm64v8", + "type": "docker", + "changes": [ + "ENTRYPOINT [ \"/usr/bin/python3\", \"/usr/bin/systemctl\" ]" + ], + "commit": true, + "image": "arm64v8/ubuntu:22.04", + "platform": "linux/arm64/v8", + "pull": false } ],