forked from zimbatm/ffmpeg-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
52 lines (48 loc) · 984 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
47
48
49
50
51
52
FROM ubuntu:jammy
# Basic packages needed to download dependencies and unpack them.
RUN apt-get update && apt-get install -y \
bzip2 \
perl \
tar \
wget \
xz-utils \
&& rm -rf /var/lib/apt/lists/*
# Install packages necessary for compilation.
RUN apt-get update && apt-get install -y \
autoconf \
automake \
bash \
build-essential \
cmake \
curl \
frei0r-plugins-dev \
gawk \
libfontconfig-dev \
libfreetype6-dev \
libopencore-amrnb-dev \
libopencore-amrwb-dev \
libsdl2-dev \
libspeex-dev \
libtheora-dev \
libtool \
libva-dev \
libvdpau-dev \
libvo-amrwbenc-dev \
libvorbis-dev \
libwebp-dev \
libxcb1-dev \
libxcb-shm0-dev \
libxcb-xfixes0-dev \
libxvidcore-dev \
lsb-release \
pkg-config \
sudo \
tar \
texi2html \
yasm \
&& rm -rf /var/lib/apt/lists/*
# Copy the build scripts.
COPY build.sh download.pl env.source fetchurl /ffmpeg-static/
VOLUME /ffmpeg-static
WORKDIR /ffmpeg-static
CMD /bin/bash