forked from magnetikonline/docker-acestream-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
29 lines (25 loc) · 1.07 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
FROM debian:8-slim
LABEL maintainer="Peter Mescalchin <peter@magnetikonline.com>"
ENV VERSION="3.1.16_debian_8.7"
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list.d/sources.list && \
echo "deb http://www.deb-multimedia.org jessie main" >> /etc/apt/sources.list.d/sources.list && \
apt-get update && apt-get install --no-install-recommends --yes --force-yes deb-multimedia-keyring && \
apt-get update && apt-get upgrade --yes && \
apt-get install --no-install-recommends --yes \
curl \
libpython2.7 \
net-tools \
libswresample1 \
python-apsw \
python-lxml \
python-m2crypto \
python-pkg-resources && \
apt-get -t jessie-backports install --no-install-recommends --yes \
x264 && \
apt-get clean && \
rm --force --recursive /var/lib/apt/lists && \
curl --silent "http://dl.acestream.org/linux/acestream_${VERSION}_x86_64.tar.gz" | \
tar --extract --gzip && \
mv "acestream_${VERSION}_x86_64" /opt/acestream
EXPOSE 6878
CMD ["/opt/acestream/acestreamengine","--client-console"]