forked from swift-nav/piksi_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
45 lines (39 loc) · 760 Bytes
/
Dockerfile
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
FROM ubuntu:trusty
WORKDIR /app
RUN apt-get update && apt-get -y --force-yes install \
git \
build-essential \
python \
python-setuptools \
python-pip \
python-virtualenv \
swig \
libicu-dev \
libqt4-scripttools \
python-enable \
python-chaco \
python-vtk \
python-wxgtk2.8 \
python-pyside \
python-qt4-dev \
python-sip \
python-qt4-gl \
python-software-properties
RUN pip install \
'pip>=1.5.6' \
'setuptools>=5.3' \
traits \
traitsui \
pyserial \
pylibftdi \
'pyparsing==1.5.7' \
pygments \
intelhex \
six \
construct \
sbp==0.29
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY . /app
RUN python setup.py install
CMD python piksi_tools/console/console.py