mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
21 lines
425 B
Docker
21 lines
425 B
Docker
# initialize from the image
|
|
|
|
FROM ubuntu:14.04
|
|
|
|
# update repositories
|
|
|
|
RUN apt-get update
|
|
|
|
# install build tools and dependencies
|
|
|
|
RUN apt-get install -y build-essential git python gcc-arm-none-eabi
|
|
|
|
# clone the source code
|
|
|
|
RUN git clone https://github.com/libopencm3/libopencm3
|
|
|
|
# build libopencm3
|
|
|
|
ENV LIBOPENCM3_GITREV 7b29caed1a726b5cef4c269b6a6ef7a1f1dd105c
|
|
RUN cd libopencm3 && git checkout $LIBOPENCM3_GITREV && make
|