forked from ouster-lidar/ouster-sdk
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Dockerfile
42 lines (36 loc) · 915 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
36
37
38
39
40
41
42
FROM ros:melodic-perception-bionic
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
# Some packages copied from:
# https://gitlab.com/nvidia/opengl/blob/ubuntu16.04/base/Dockerfile
RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
git \
build-essential \
dialog \
make \
gcc \
g++ \
locales \
wget \
software-properties-common \
sudo \
libgl1-mesa-glx \
libgl1-mesa-dri \
libxau6 \
libxdmcp6 \
libxcb1 \
libxext6 \
libx11-6 \
tmux \
xdg-utils \
eog \
&& rm -rf /var/lib/apt/lists/*
# nvidia-container-runtime
ENV NVIDIA_VISIBLE_DEVICES \
${NVIDIA_VISIBLE_DEVICES:-all}
ENV NVIDIA_DRIVER_CAPABILITIES \
${NVIDIA_DRIVER_CAPABILITIES:+$NVIDIA_DRIVER_CAPABILITIES,}graphics,compat32,utility
ADD /scripts /scripts
RUN bash /scripts/install_scripts_for_docker.bash