From e112dd55ced8016f82f2f635187cde8619258636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Fri, 5 May 2017 17:27:12 +0200 Subject: [PATCH] Pip install editable Closes senpy/senpy#32 --- Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.template b/Dockerfile.template index 7a471be..2ec4f72 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -17,6 +17,6 @@ WORKDIR /usr/src/app COPY test-requirements.txt requirements.txt /usr/src/app/ RUN pip install --use-wheel -r test-requirements.txt -r requirements.txt COPY . /usr/src/app/ -RUN pip install --no-deps --no-index . +RUN pip install --no-index --no-deps --editable . ENTRYPOINT ["python", "-m", "senpy", "-f", "/senpy-plugins/", "--host", "0.0.0.0"]