1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-15 20:19:23 +00:00
trezor-firmware/Dockerfile

26 lines
869 B
Docker
Raw Normal View History

2014-06-18 22:31:40 +00:00
# initialize from the image
FROM ubuntu:14.04
2015-08-03 17:10:46 +00:00
ENV GCC_ARM_VERSION 4.9.3.2015q2-1trusty1
2015-04-02 15:47:28 +00:00
2014-06-18 22:31:40 +00:00
# add and update package repositories
2015-02-13 17:21:20 +00:00
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FE324A81C208C89497EFC6246D1D8367A3421AFB
RUN gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --fingerprint FE324A81C208C89497EFC6246D1D8367A3421AFB
RUN echo "deb http://ppa.launchpad.net/terry.guo/gcc-arm-embedded/ubuntu trusty main" >> /etc/apt/sources.list && apt-get update
2014-06-18 22:31:40 +00:00
# install build tools and dependencies
2015-04-02 15:47:28 +00:00
RUN apt-get install -y build-essential git python
RUN apt-get install -y gcc-arm-none-eabi=$GCC_ARM_VERSION
2014-06-18 22:31:40 +00:00
# clone the source code
2014-12-27 15:33:44 +00:00
RUN git clone https://github.com/libopencm3/libopencm3
2014-06-18 22:31:40 +00:00
# build libopencm3
2015-08-03 17:10:46 +00:00
ENV LIBOPENCM3_GITREV 7b29caed1a726b5cef4c269b6a6ef7a1f1dd105c
2014-06-22 22:37:24 +00:00
RUN cd libopencm3 && git checkout $LIBOPENCM3_GITREV && make