forked from opentok/opentok-linux-sdk-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (27 loc) · 760 Bytes
/
Copy pathDockerfile
File metadata and controls
33 lines (27 loc) · 760 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
FROM debian:buster
RUN echo "deb http://security.debian.org/ buster/updates main" | tee -a /etc/apt/sources.list
RUN apt-get update \
&& apt-get -yqqf --no-install-recommends install \
ca-certificates \
wget \
gnupg \
curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN curl -s https://packagecloud.io/install/repositories/tokbox/debian/script.deb.sh | bash
RUN apt-get update \
&& apt-get install -y \
software-properties-common \
build-essential \
cmake \
clang \
libc++-dev \
libc++abi-dev \
libsdl2-dev \
libopencv-dev \
libopentok-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
VOLUME /samples
WORKDIR /samples/scripts
CMD bash -x build.sh