1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/shoutcast/Dockerfile
2016-09-18 00:59:19 +08:00

24 lines
458 B
Docker

#
# Dockerfile for shoutcast
#
FROM debian:jessie
MAINTAINER kev <noreply@easypi.info>
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 \
&& apt-get remove -y curl \
&& rm -rf /var/lib/apt/lists/*
COPY sc_serv.conf .
EXPOSE 8000 8001
CMD ["./sc_serv", "sc_serv.conf"]