mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-12 10:19:20 +01:00
9 lines
451 B
Bash
Executable File
9 lines
451 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# This has to be built using x86 docker image arm image is not working. For building on arm mac use --platform linux/amd64 for the build command.
|
|
docker build . -f ./scripts/Dockerfile -t trezor-bluetooth-image --platform linux/amd64
|
|
docker create --name trezor-bluetooth-container trezor-bluetooth-image
|
|
docker cp trezor-bluetooth-container:/output/. ../suite-data/files/bin/bluetooth
|
|
docker rm trezor-bluetooth-container
|