From f1c3592ff99ed699dcbaf56f7257c12a5bd6bfd7 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Tue, 22 Sep 2015 22:50:20 +0100 Subject: [PATCH] Fixed Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 67dc914..093a247 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM ubuntu:wily MAINTAINER Fergal Moran "Ferg@lMoran.me" ENV DEBIAN_FRONTEND noninteractive +RUN mkdir /code + RUN apt-get -qq -y update && \ apt-get -qq -y install icecast2 python-setuptools && \ apt-get clean @@ -9,6 +11,9 @@ RUN apt-get -qq -y update && \ RUN easy_install supervisor && \ easy_install supervisor-stdout +WORKDIR /code +ADD requirements.txt /code + ADD icecast2/icecast.xml /etc/icecast2/ ADD default/icecast2 /etc/default/ ADD supervisord.conf /etc/supervisord.conf