-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
41 lines (29 loc) · 1.2 KB
/
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
FROM resin/rpi-raspbian:wheezy
MAINTAINER Alexander Tong <alexanderytong@gmail.com>
WORKDIR /root
RUN apt-get update && apt-get install -y \
gcc \
make \
python \
python-dev \
python-pip
###############################################################################
RUN pip install Flask
RUN pip install latlon
RUN pip install argparse
RUN pip install pyserial
RUN pip install gpxpy
RUN pip install requests
###############################################################################
COPY canboat /root/canboat
###############################################################################
WORKDIR /root/canboat
RUN make -j4 && make install
###############################################################################
WORKDIR /root
RUN apt-get -y purge \
gcc \
make
RUN apt-get -y autoremove
RUN rm -rf $HOME/canboat $HOME/.cache/pip/ /var/lib/apt/lists/* /tmp/*
ENTRYPOINT ["/bin/bash"]