-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
46 lines (44 loc) · 1.58 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
42
43
44
45
46
FROM ubuntu:18.04
# DEPENDENCIES
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
build-essential \
cmake \
libavcodec-dev \
libavdevice-dev \
libavformat-dev \
libboost-filesystem-dev \
libboost-iostreams-dev \
libboost-program-options-dev \
libboost-regex-dev \
libboost-system-dev \
libboost-thread-dev \
libbullet-dev \
libcurl4-openssl-dev \
libfreeimage-dev \
libgraphviz-dev \
libgts-dev \
libhdf5-dev \
libignition-fuel-tools1-dev \
libignition-math4-dev \
libignition-msgs-dev \
libignition-transport4-dev \
libogre-1.9-dev \
libopenal-dev \
libprotobuf-dev \
libprotoc-dev \
libqwt-dev \
libsdformat6-dev \
libswscale-dev \
libtar-dev \
libtbb-dev \
libtinyxml2-dev \
pkg-config \
protobuf-compiler \
qtbase5-dev \
uuid-dev \
xsltproc && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# GAZEBO
ADD . /gazebo
RUN /gazebo/docker/build_gazebo.sh