-
Notifications
You must be signed in to change notification settings - Fork 10
/
Dockerfile.9
35 lines (29 loc) · 1.25 KB
/
Dockerfile.9
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
# rebased/repackaged base image that only updates existing packages
FROM mbentley/debian:bullseye
LABEL maintainer="Matt Bentley <[email protected]>"
ARG DEBIAN_FRONTEND=noninteractive
# install packages per https://github.com/UniversalMediaServer/UniversalMediaServer/wiki/Linux-install-instructions
RUN (dpkg --add-architecture i386 &&\
apt-get update &&\
apt-get install -y dcraw flac libfreetype6:i386 libstdc++6:i386 libbz2-1.0:i386 lib32z1 lib32ncurses6 mediainfo mencoder mplayer procps vlc wget &&\
rm -rf /var/lib/apt/lists/*)
ENV UMSVER=9.8.3 \
UMS_PROFILE=/opt/ums/UMS.conf \
JAVA_OPTS="-XX:+UseContainerSupport"
# download and install UMS
RUN (wget "https://github.com/UniversalMediaServer/UniversalMediaServer/releases/download/${UMSVER}/UMS-${UMSVER}-x86_64.tgz" -O /opt/UMS-${UMSVER}.tgz &&\
cd /opt &&\
tar zxf UMS-${UMSVER}.tgz &&\
rm UMS-${UMSVER}.tgz &&\
mv ums-${UMSVER} ums &&\
mkdir /opt/ums/database /opt/ums/data &&\
groupadd -g 500 ums &&\
useradd -u 500 -g 500 -d /opt/ums ums &&\
chown -R ums:ums /opt/ums)
# add the entrypoint
COPY entrypoint.sh /entrypoint.sh
WORKDIR /opt/ums
EXPOSE 1900/udp 2869 5001 9001
VOLUME ["/tmp","/opt/ums/database","/opt/ums/data"]
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/opt/ums/UMS.sh"]