forked from ci-group/revolve
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
24 lines (22 loc) · 883 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
FROM ubuntu:bionic
# Dependencies
RUN apt-get update
RUN apt-get install -y build-essential \
libboost-all-dev \
cmake \
curl \
cppcheck \
doxygen \
git \
gsl-bin libgsl0-dev \
mercurial \
pkg-config \
python \
python3-pip \
libyaml-cpp-dev \
xsltproc \
libcairo2-dev
RUN apt-get install -y libgazebo9-dev gazebo9
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
ADD . /revolve
RUN /revolve/docker/build_revolve.sh