Is your feature request related to a problem? Please describe.
I would like to run a relay server on Amazon Graviton CPU (Arm OS/ARCH)
The other containers in the docker compose file all support x86 and arm except the gsn container
Describe the solution you'd like
Use buildx to build the docker container to support multiple machines
docker buildx create --use
docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --push --tag $IMAGE .
currently the relay container is build using docker build -t $IMAGE . <- this only support's the cpu type that the server is built on
Is your feature request related to a problem? Please describe.
I would like to run a relay server on Amazon Graviton CPU (Arm OS/ARCH)
The other containers in the docker compose file all support x86 and arm except the gsn container
Describe the solution you'd like
Use buildx to build the docker container to support multiple machines
currently the relay container is build using
docker build -t $IMAGE .<- this only support's the cpu type that the server is built on