1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/shoutcast/arm/Dockerfile

24 lines
482 B
Docker
Raw Normal View History

2016-09-17 17:09:32 +00:00
#
# 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 \
2016-09-18 08:55:04 +00:00
&& apt-get purge --auto-remove -y curl \
2016-09-17 17:09:32 +00:00
&& rm -rf /var/lib/apt/lists/*
COPY sc_serv.conf .
EXPOSE 8000 8001
CMD ["./sc_serv", "sc_serv.conf"]