Thanks for the great repo :)
The official Docker images (lasuite/meet-backend and lasuite/meet-frontend) only support AMD64. Running Meet on ARM64 devices requires manually building images locally, which isn't practical for updates. Multi-architecture Docker images supporting both linux/amd64 and linux/arm64 therefore would be great.
Currently im building backend and frontend images using:
docker buildx build --platform linux/arm64 --load --target backend-production -t meet-backend:arm64 .
docker buildx build --platform linux/arm64 --load --target frontend-production -t meet-frontend:arm64 -f src/frontend/Dockerfile .
Thanks for the great repo :)
The official Docker images (
lasuite/meet-backendandlasuite/meet-frontend) only support AMD64. Running Meet on ARM64 devices requires manually building images locally, which isn't practical for updates. Multi-architecture Docker images supporting bothlinux/amd64andlinux/arm64therefore would be great.Currently im building backend and frontend images using: