mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
24 lines
469 B
Docker
24 lines
469 B
Docker
|
#
|
||
|
# Dockerfile for shoutcast-arm
|
||
|
#
|
||
|
|
||
|
FROM armhf/debian:jessie
|
||
|
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
WORKDIR /opt/shoutcast
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apt-get update \
|
||
|
&& apt-get install -y curl \
|
||
|
&& curl http://download.nullsoft.com/shoutcast/tools/sc_serv2_armv6_rpi-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"]
|