-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Dockerfile
51 lines (45 loc) · 1.18 KB
/
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
FROM phusion/baseimage:noble-1.0.0
LABEL maintainer="rix1337"
ENV DEBIAN_FRONTEND=noninteractive \
LC_ALL=C.UTF-8 \
LANG=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8 \
HOME=/root
# Disable SSH
RUN rm -rf /etc/service/sshd /etc/my_init.d/00_regen_ssh_host_keys.sh
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
# Invalidate build cache on new releases of MakeMKV
ADD "https://launchpad.net/~heyarje/+archive/ubuntu/makemkv-beta/+builds?build_text=makemkv-bin&build_state=built" /dev/null
# Install software
RUN add-apt-repository -y ppa:heyarje/makemkv-beta && \
apt-get update && \
apt-get install -y --no-install-recommends \
abcde \
ccextractor \
eject \
eyed3 \
flac \
gddrescue \
git \
id3 \
id3v2 \
lame \
makemkv-bin \
makemkv-oss \
mkcue \
python3 \
python3-docopt \
python3-flask \
python3-waitress \
sdparm \
speex \
vorbis-tools \
vorbisgain \
wget && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Move Files and set permissions
COPY root/ /
RUN chmod +x /etc/my_init.d/*.sh