mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-16 11:28:14 +00:00
5cc299facd
Improve the build reliability by ensuring protobuf files are generated at build time.
13 lines
278 B
Docker
13 lines
278 B
Docker
# initialize from the image
|
|
|
|
FROM debian:9
|
|
|
|
# update repositories
|
|
|
|
RUN apt-get update
|
|
|
|
# install build tools and dependencies
|
|
|
|
RUN apt-get install -y build-essential git python python-ecdsa gcc-arm-none-eabi protobuf-compiler \
|
|
libprotobuf-dev python-protobuf python3-protobuf
|