forked from microsoft/Azure-Kinect-Sensor-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (31 loc) · 670 Bytes
/
Dockerfile
File metadata and controls
34 lines (31 loc) · 670 Bytes
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
# Use the official ubuntu:18.04 image as the parent image
FROM ubuntu:18.04
# Tell Ubuntu non-interactive install
ARG DEBIAN_FRONTEND=noninteractive
# Set the working directory to /app
WORKDIR /app
# Run apt-get steps
RUN apt-get update && apt-get install -y \
pkg-config \
ninja-build \
doxygen \
clang \
gcc-multilib \
g++-multilib \
python3 \
git-lfs \
nasm \
cmake \
libgl1-mesa-dev \
libsoundio-dev \
libvulkan-dev \
libx11-dev \
libxcursor-dev \
libxinerama-dev \
libxrandr-dev \
libusb-1.0-0-dev \
libssl-dev \
libudev-dev \
mesa-common-dev \
uuid-dev \
libopencv-dev