1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/shoutcast/Dockerfile

24 lines
470 B
Docker
Raw Normal View History

2016-09-17 18:59:19 +02:00
#
# Dockerfile for shoutcast
#
FROM debian:jessie
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-09-17 18:59:19 +02:00
WORKDIR /opt/shoutcast
RUN set -xe \
&& apt-get update \
&& apt-get install -y curl \
&& curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_linux_x64-latest.tar.gz | tar xz \
&& mkdir -p control logs \
2016-09-18 10:55:04 +02:00
&& apt-get purge --auto-remove -y curl \
2016-09-17 18:59:19 +02:00
&& rm -rf /var/lib/apt/lists/*
COPY sc_serv.conf .
EXPOSE 8000 8001
CMD ["./sc_serv", "sc_serv.conf"]