Skip to content

Commit

Permalink
RACK-928: Slow Startup RiB Container on Apple M1
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chrisage committed Jul 27, 2023
1 parent ff93cba commit 566767a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion rack-box/rack-box-docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,26 @@

"builders": [
{
"name": "arch_amd64",
"type": "docker",

"changes": [
"ENTRYPOINT [ \"/usr/bin/python3\", \"/usr/bin/systemctl\" ]"
],
"commit": true,
"image": "ubuntu:22.04",
"platform": "linux/amd64",
"pull": false
},
{
"name": "arch_arm64v8",
"type": "docker",
"changes": [
"ENTRYPOINT [ \"/usr/bin/python3\", \"/usr/bin/systemctl\" ]"
],
"commit": true,
"image": "ubuntu:22.04",
"platform": "linux/arm64/v8",
"pull": true
}
],

Expand Down

0 comments on commit 566767a

Please sign in to comment.