-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
34 lines (27 loc) · 817 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
FROM ubuntu
MAINTAINER Seth Kingry <[email protected]>
ARG DEBIAN_FRONTEND=noninteractive
# Update package repos
RUN apt-get -q update
# Install the prerequisites
RUN apt-get install -y software-properties-common \
dvdauthor \
genisoimage \
growisofs \
jq \
sqlite3 \
python3-pip \
bc \
vim \
curl
# Install ffmpeg
RUN apt-get install -y ffmpeg
# Install ffmpeg-normalize
RUN pip3 install ffmpeg-normalize
# Install scripts
COPY check_resolution /bin/check_resolution
COPY common_functions /common_functions
COPY make_dvd /bin/make_dvd
COPY process /bin/process
COPY queue /bin/queue
CMD [ "process" ]