Open rectalogic opened 2 years ago
Hey @rectalogic, thanks for reaching out. You're right, we currently do not support arm64
. We are tracking this in our internal backlog. Pull requests and +1s on the feature request will help it move up the backlog.
Issue Summary
Following the instructions here https://www.twilio.com/docs/twilio-cli/getting-started/install#apt to install on Ubuntu 20.04 from apt repository. This works on amd64 but fails on arm64
Steps to Reproduce
Follow the instructions at the link above. On amd64 this works properly. On arm64 it fails to find the package.
Code Snippet
We are building a multiplatform docker image that contains twilio-cli, so for both amd64 and arm64 we need to be able to
apt install
the same version of the twilio-cliLooking at
curl https://twilio-cli-prod.s3.amazonaws.com/apt/Packages.gz | gunzip -
it looks like twilio usesArchitecture: armel
andArchitecture: amd64
, but noArchitecture: arm64
and so Ubuntu cannot find any packages?You can reproduce by running an ubuntu arm64 shell like
docker run --rm -it --platform linux/arm64 ubuntu:focal bash
and following the apt installation instructions at https://www.twilio.com/docs/twilio-cli/getting-started/install#apt