From 9e2a16929db435815db5b1c8d6cd2254b9aa2440 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Tue, 9 May 2017 13:39:50 -0700 Subject: [PATCH] Have Dockerfile build off current dir Makes it much easier to test! --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e57cfc45..c404fd1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,5 +12,7 @@ RUN apt-get update && \ COPY install-s2i.bash /usr/local/bin/install-s2i.bash RUN /usr/local/bin/install-s2i.bash -RUN pip3 install --no-cache-dir git+https://github.com/yuvipanda/builder@e7d51c3 +RUN mkdir /tmp/src +ADD . /tmp/src +RUN pip3 install /tmp/src