63 lines
1.3 KiB
Docker
63 lines
1.3 KiB
Docker
FROM ubuntu:latest
|
|
MAINTAINER Ryan Kurte <ryankurte@gmail.com>
|
|
LABEL Description="Docker image for building arm-embedded projects"
|
|
|
|
# General dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
subversion \
|
|
curl \
|
|
cmake \
|
|
make \
|
|
automake \
|
|
autoconf \
|
|
python-setuptools \
|
|
ninja-build \
|
|
python-dev \
|
|
libtool \
|
|
unzip \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
libusb-1.0.0 \
|
|
libusb-1.0.0-dev \
|
|
software-properties-common \
|
|
python-software-properties \
|
|
gawk \
|
|
genromfs \
|
|
ccache \
|
|
clang \
|
|
build-essential \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
libprotobuf-dev \
|
|
protobuf-compiler \
|
|
libprotobuf-c-dev \
|
|
protobuf-c-compiler \
|
|
python-protobuf
|
|
|
|
# arm-none-eabi custom ppa
|
|
RUN add-apt-repository ppa:team-gcc-arm-embedded/ppa && \
|
|
apt-get update && \
|
|
apt-get install -y gcc-arm-embedded
|
|
|
|
# Yotta
|
|
RUN easy_install pip && \
|
|
pip install yotta && \
|
|
mkdir -p /usr/local/lib/yotta_modules \
|
|
chown $USER /usr/local/lib/yotta_modules \
|
|
chmod 755 /usr/local/lib/yotta_modules
|
|
|
|
# Pyserial for serial programming
|
|
RUN pip install pyserial
|
|
|
|
# STLink util
|
|
RUN git clone https://github.com/texane/stlink.git && \
|
|
cd stlink && mkdir build && cd build && \
|
|
cmake .. && make && make install
|
|
|
|
# Cleanup
|
|
RUN apt-get clean && \
|
|
rm -rf /var/lib/apt
|
|
|