mirror of
https://github.com/fergalmoran/dss.docker.git
synced 2025-12-22 09:18:29 +00:00
21 lines
440 B
Docker
21 lines
440 B
Docker
FROM ubuntu:trusty
|
|
|
|
MAINTAINER Fergal Moran "Ferg@lMoran.me"
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get -qq -y update && \
|
|
apt-get -qq -y install icecast2 python-setuptools && \
|
|
apt-get clean
|
|
|
|
RUN easy_install supervisor && \
|
|
easy_install supervisor-stdout
|
|
|
|
CMD ["/start.sh"]
|
|
EXPOSE 8000
|
|
VOLUME ["/config", "/var/log/icecast2", "/etc/icecast2"]
|
|
|
|
ADD ./start.sh /start.sh
|
|
ADD ./etc /etc
|
|
RUN chown -R icecast2 /etc/icecast2
|