mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
4147a914ac
Minimize the number of layers and call apt-get update properly
10 lines
245 B
Docker
10 lines
245 B
Docker
# initialize from the image
|
|
|
|
FROM debian:9
|
|
|
|
# install build tools and dependencies
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential git python python-ecdsa gcc-arm-none-eabi \
|
|
protobuf-compiler libprotobuf-dev python-protobuf
|