Update distill Dockerfile
diff --git a/docker/distill/Dockerfile b/docker/distill/Dockerfile
index f69edc8..37b40c0 100644
--- a/docker/distill/Dockerfile
+++ b/docker/distill/Dockerfile
@@ -18,6 +18,10 @@
 # install system wide deps
 RUN apt-get -yqq update
 
+# Install Distill dependencies
+COPY requirements.txt /requirements.txt
+RUN pip install -r /requirements.txt --no-cache-dir
+
 # Set the work directory
 RUN mkdir -p /usr/src
 WORKDIR /usr/src
@@ -31,15 +35,10 @@
 WORKDIR /usr/src/distill
 RUN git pull
 
-
 # Add code
 ##WORKDIR /app
 ##ADD setup.py /app
 
-ADD requirements.txt /distill
-
-# Install Distill dependencies
-RUN pip install -r requirements.txt
 
 # Expose Ports
 EXPOSE 8090