forked from woniuzfb/iptv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (45 loc) · 930 Bytes
/
Dockerfile
File metadata and controls
48 lines (45 loc) · 930 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM ubuntu:bionic
# remove sed command ?
RUN sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list \
&& apt-get update && apt-get install -y \
autoconf \
automake \
build-essential \
cmake \
zlib1g-dev \
libtool \
pkg-config \
texinfo \
frei0r-plugins-dev \
libopencore-amrnb-dev \
libopencore-amrwb-dev \
libtheora-dev \
libvo-amrwbenc-dev \
libxvidcore-dev \
libssl-dev \
libva-dev \
libvdpau-dev \
libxcb1-dev \
libxcb-shm0-dev \
libxcb-xfixes0-dev \
flex \
bison \
libharfbuzz-dev \
libfontconfig-dev \
libfreetype6-dev \
python3 \
python3-pip \
python3-setuptools \
python3-wheel \
ninja-build \
doxygen \
git \
libxext-dev \
libsndfile1-dev \
libasound2-dev \
curl \
graphviz && rm -rf /var/lib/apt/lists/*
COPY scripts/build.sh /root/ffmpeg_sources/
VOLUME /root/ffmpeg_sources/
WORKDIR /root/ffmpeg_sources/
CMD /bin/bash