forked from Waterloo-Aquadrone/aquadrone-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfileBase
33 lines (28 loc) · 794 Bytes
/
DockerfileBase
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
FROM ros:kinetic-robot-xenial
# Install basic useful programs
# Some are just for testing that the docker image was built correctly
RUN apt-get update ; exit 0
RUN apt-get install apt-transport-https
RUN apt-get update && \
apt-get install -y \
curl \
build-essential \
cmake \
software-properties-common \
psmisc \
vim \
gedit \
sudo \
git-all && \
rm -rf /var/lib/apt/lists/*
# Install Required ROS Packages and Tools
RUN apt-get update && \
apt-get install -y \
python-catkin-tools \
ros-kinetic-gazebo-ros-pkgs \
ros-kinetic-gazebo-ros-control \
ros-kinetic-rviz && \
rm -rf /var/lib/apt/lists/*
# setup entrypoint
COPY ./docker_entrypoint.sh /root
ENTRYPOINT ["/root/docker_entrypoint.sh"]