-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile.cortexm-ti
107 lines (85 loc) · 4.82 KB
/
Dockerfile.cortexm-ti
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# For help with editing and block commenting add plugin to sublime
#macos
#Press cmd(⌘)-shift-p and type "add repo".
#Then paste in the GitHub address for this package:
#https://github.com/jaytaylor/Dockerfile.sublime-syntax
#Press cmd(⌘)-shift-p and type "install".
#Enter "Dockerfile.sublime-syntax" and press enter.
#Restart Sublime
#windows
#Replace cmd(⌘) with Ctrl
#usage:
# e.g.
# docker build -t lager .
# docker run --name lager_bash --rm -it lager bash
FROM ubuntu:20.04
MAINTAINER Akbar Dhanaliwala <[email protected]>
WORKDIR /app
ARG DEBIAN_FRONTEND=noninteractive
# Download tools(including gcc), prerequisites
RUN apt-get update && \
apt-get install -y wget curl git unzip bzip2 build-essential gcc-multilib pkg-config python python-setuptools python3 \
python3-pip python3-setuptools python-cryptography python-pyparsing python-pyelftools nano bash \
ruby gcc-arm-none-eabi clang cmake ninja-build libncurses-dev flex bison gperf ccache libffi-dev libssl-dev dfu-util \
libasound2-dev libgconf-2-4 libnotify-dev libnss3-tools libnss3 libpython2.7 default-jdk\
&& apt-get clean all
# Install python-pip
# NOTE: Python2 was deprecated on Jan.1, 2020. Ubuntu 20.04 does not ship with python2
RUN curl https://bootstrap.pypa.io/get-pip.py --output /tmp/get-pip.py
RUN python2 /tmp/get-pip.py && rm /tmp/get-pip.py
ENV GNU_INSTALL_ROOT /usr/bin/
ENV GNU_PREFIX arm-none-eabi
# # Other Dependencies - i386
RUN dpkg --add-architecture i386 \
&& apt-get update -yq \
&& apt-get upgrade -yq \
&& apt-get install -yq --no-install-recommends cpio \
libc6:i386 libx11-6:i386 libxext6:i386 libstdc++6:i386 libexpat1:i386 \
libxext6 libxrender1 libxtst6 libgtk2.0-0 libxslt1.1 libncurses5-dev libusb-0.1-4:i386 \
unzip \
xz-utils
#Install FTDI D2XX driver
RUN curl -fSL -A "Mozilla/4.0" -o /tmp/libftd2xx-x86_64-1.4.8.gz "https://www.ftdichip.com/Drivers/D2XX/Linux/libftd2xx-x86_64-1.4.8.gz"
RUN cd /tmp && tar -xvzf /tmp/libftd2xx-x86_64-1.4.8.gz
RUN cp /tmp/release/build/lib* /usr/local/lib/ 2>/dev/null || :
RUN cd /usr/local/lib && ln -s libftd2xx.so.1.4.8 libftd2xx.so && chmod 0755 libftd2xx.so.1.4.8 && rm -rf /tmp/release /tmp/libftd2xx-x86_64-1.4.8.gz
ENV PATH=$PATH:/usr/local/lib
# Install Texas Instruments Code Composer
RUN curl -fSL -A "Mozilla/4.0" -o /tmp/CCS10.1.0.00010_linux-x64.tar.gz "http://software-dl.ti.com/ccs/esd/CCSv10/CCS_10_1_0/exports/CCS10.1.0.00010_linux-x64.tar.gz"
RUN mkdir /opt/ti && chmod 777 /opt/ti
RUN cd /tmp && tar -xvzf /tmp/CCS10.1.0.00010_linux-x64.tar.gz
RUN cd /tmp/CCS10.1.0.00010_linux-x64 && ./ccs_setup_10.1.0.00010.run --mode unattended --unattendedmodeui none --prefix /opt/ti
RUN rm -rf /tmp/CCS10.1.0.00010_linux-x64
#get xdc tools with JRE
RUN curl -fSL -A "Mozilla/4.0" -o /tmp/xdctools.zip "https://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc/3_61_00_16/exports/xdccore/xdctools_3_61_00_16_core_linux.zip"
RUN cd /tmp && unzip -o xdctools.zip
RUN cd /tmp && cp -r xdc* /opt/ti
RUN rm -rf /tmp/xdctools.zip
# Install Texas Instruments UniFlash (For building images)
RUN apt-get install libusb-0.1-4
RUN pip install teamcity-messages pytest mock pytest-cov pytest mock xmltodict requests pylint coloredlogs pyopenssl pyserial pytz
RUN curl -fSL -A "Mozilla/4.0" -o /tmp/uniflash_sl.6.0.0.2710.run "http://software-dl.ti.com/ccs/esd/uniflash/uniflash_sl.6.0.0.2710.run" \
&& chmod a+x /tmp/uniflash_sl.6.0.0.2710.run \
&& /tmp/uniflash_sl.6.0.0.2710.run --mode unattended --unattendedmodeui none --prefix /opt/ti \
&& rm /tmp/uniflash_sl.6.0.0.2710.run
# avoid needing "./" when calling SLImagecrator
RUN cp /usr/local/lib/libftd2xx.so /opt/ti/simplelink/imagecreator/bin/
# Don't make this an env path since currently SLImageCreator only seems to work from within the bin folder. We'll create an alias instead
# This will dump you into /opt/ti/simplelink/imagecreator/bin after running the command, so need to fix that
#ENV PATH $PATH:/opt/ti/simplelink/imagecreator/bin
RUN echo 'alias SLImageCreator="cd /opt/ti/simplelink/imagecreator/bin;./SLImageCreator"' >> ~/.bashrc
# todo get SLImageCreator to work outside of bin folder
# Install nanopb and protoc
ENV PROTOC_ZIP=protoc-3.7.1-linux-x86_64.zip
RUN curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.7.1/$PROTOC_ZIP
RUN unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
RUN unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
RUN rm -f $PROTOC_ZIP
RUN curl -fSL -A "Mozilla/4.0" -o /tmp/nanopb-0.4.1-linux-x86.tar.gz "https://jpa.kapsi.fi/nanopb/download/nanopb-0.4.1-linux-x86.tar.gz"
RUN cd /tmp && tar -xvzf /tmp/nanopb-0.4.1-linux-x86.tar.gz
RUN mkdir -p /opt/nanopb
RUN cp -r /tmp/nanopb-0.4.1-linux-x86 /opt/nanopb/ && rm -rf /tmp/nanopb-0.4.1-linux-x86.tar.gz /tmp/nanopb-0.4.1-linux-x86
ENV PATH=$PATH:/opt/nanopb
#install ceedling build system
RUN gem install ceedling
RUN pip3 install 'lager-cli==0.1.98'