forked from ArthurHDN/ros-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
35 lines (33 loc) · 798 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
25
26
27
28
29
30
31
32
33
34
35
FROM osrf/ros:noetic-desktop-full AS ros_dev
ENV DEBIAN_FRONTEND noninteractive
RUN apt update && \
apt install -y \
git \
x11vnc \
wget \
python3 \
python3-numpy \
python3-numba \
unzip \
xvfb \
icewm \
tree \
dos2unix \
vim \
net-tools \
iputils-ping \
iproute2 \
iptables \
python3-catkin-tools \
tcpdump \
nano \
micro \
tmux
RUN cd /root && git clone https://github.com/gpakosz/.tmux && \
ln -s -f /root/.tmux/.tmux.conf /root/.tmux.conf && \
cp /root/.tmux/.tmux.conf.local /root/.tmux.conf.local && \
sed -i 's/xterm-color)/xterm-color|*-256color)/g' /root/.bashrc
ENV DISPLAY :0
ENV LIBGL_ALWAYS_SOFTWARE 1
WORKDIR /workspaces
RUN git config --global --add safe.directory /workspaces