-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (23 loc) · 678 Bytes
/
Copy pathDockerfile
File metadata and controls
27 lines (23 loc) · 678 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
FROM debian:8-slim
LABEL maintainer="Peter Mescalchin <peter@magnetikonline.com>"
ARG ACE_STREAM_VERSION
RUN DEBIAN_FRONTEND="noninteractive" \
apt-get update && apt-get --yes upgrade && \
# install packages
apt-get --no-install-recommends --yes install \
curl \
libpython2.7 \
net-tools \
python-apsw \
python-lxml \
python-m2crypto \
python-pkg-resources && \
# clean up
apt-get clean && \
rm --force --recursive /var/lib/apt/lists && \
# install server
curl --silent "http://acestream.org/downloads/linux/acestream_${ACE_STREAM_VERSION}_x86_64.tar.gz" | \
tar --extract --gzip
EXPOSE 6878/tcp
ENTRYPOINT ["/start-engine"]
CMD ["--client-console"]