forked from cellofellow/ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (29 loc) · 689 Bytes
/
Dockerfile
File metadata and controls
33 lines (29 loc) · 689 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:stable
RUN apt-get update && \
apt-get -qqy install --no-install-recommends \
autoconf \
automake \
build-essential \
ca-certificates \
git \
mercurial \
cmake \
libass-dev \
libgpac-dev \
libtheora-dev \
libtool \
libvdpau-dev \
libvorbis-dev \
libopus-dev \
pkg-config \
texi2html \
zlib1g-dev \
libmp3lame-dev \
wget \
yasm && \
apt-get -qqy clean && \
rm -rf /var/lib/apt/lists/*
# Run build script
ADD script/build.sh /build.sh
RUN ["/bin/bash", "/build.sh"]
ENTRYPOINT ["/usr/local/bin/ffmpeg"]