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 26, 2023
1 parent ff93cba commit f85f827
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion rack-box/rack-box-docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": true
}
],

Expand Down

0 comments on commit f85f827

Please sign in to comment.