forked from Rhoban/SSL
-
Notifications
You must be signed in to change notification settings - Fork 2
/
dockerfile_devel
37 lines (23 loc) · 940 Bytes
/
dockerfile_devel
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
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install -y g++ git cmake libprotobuf-dev \
protobuf-compiler php php-cli php-xml \
libgtest-dev libqt5widgets5 qt5-default libqt5webkit5-dev libwebsockets-dev \
python-pip python-empy
RUN pip install -U catkin_tools
RUN mkdir -p /ssl/src/{rhoban,rhobandeps}
WORKDIR /ssl/src/rhoban
RUN git clone https://github.com/Rhoban/geometry.git
RUN git clone https://github.com/Rhoban/random.git
RUN git clone https://github.com/Rhoban/utils.git
WORKDIR /ssl/src/rhobandeps
RUN git clone https://github.com/RhobanDeps/eigen.git
RUN git clone https://github.com/RhobanDeps/serial.git
RUN git clone https://github.com/RhobanDeps/jsoncpp.git
RUN git clone https://github.com/RhobanDeps/tclap.git
WORKDIR /ssl
COPY . .
RUN ./workspace setup
RUN ./workspace install
CMD ./workspace build:debug && ./bin/ai -s -y