-
Notifications
You must be signed in to change notification settings - Fork 16
/
Dockerfile
48 lines (41 loc) · 990 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
43
44
45
46
FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
USER root
RUN apt-get update && apt-get -y --no-install-recommends install \
sudo \
vim \
wget \
build-essential \
autopoint \
pkg-config \
python3.6 \
python3-pip \
python3.6-dev \
python3.6-venv \
python-dev
RUN apt-get -y --no-install-recommends install \
git \
zip \
unzip \
autoconf \
automake \
libtool \
gstreamer-1.0 \
gstreamer1.0-dev \
gstreamer1.0-tools \
gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-libav \
gstreamer1.0-gl \
python-gst-1.0 \
libgirepository1.0-dev \
libgstreamer-plugins-base1.0-dev \
libcairo2-dev \
gir1.2-gstreamer-1.0 \
python3-gi \
python-gi-dev
RUN mkdir /home/gstreamer
COPY * /home/gstreamer/
RUN cd /home/gstreamer && ./install_video_codec_sdk.sh \
&& ./build_nvidia_gst_plugins.sh