-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
42 lines (37 loc) · 914 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 ubuntu:19.10
LABEL Maintainer="Michael Riha <michael.riha@gmail.com>"
#to un tzdata also not active to choose a timezone
ENV DEBIAN_FRONTEND=noninteractive
# https://github.com/centricular/gstwebrtc-demos#running-the-python-version
RUN apt-get update && apt-get install -y \
git \
cmake \
xvfb \
graphviz \
graphviz-dev \
iputils-ping \
gstreamer1.0-tools \
gstreamer1.0-nice \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-plugins-good \
gstreamer1.0-libav \
libgstreamer1.0-dev \
libglib2.0-dev \
libgstreamer-plugins-bad1.0-dev \
libsoup2.4-dev \
libjson-glib-dev \
python3-pip \
libgirepository1.0-dev \
libcairo2-dev \
python3
COPY installs /tmp
RUN sh /tmp/install-python-utils.sh
#for testing live stream output
#https://docs.docker.com/engine/reference/builder/ default is TCP!
EXPOSE 7001/tcp
EXPOSE 7001/udp
#for SRT
EXPOSE 2088/udp
#ENTRYPOINT "/bin/bash"
CMD /bin/bash