Remove `editable` flag in Dockerfile (#1416)

From `pip install --help`:
```
-e, --editable <path/url>   Install a project in editable mode (i.e.
setuptools "develop mode") from a local project path or a VCS url.
```
This commit is contained in:
Krish 2017-04-20 10:38:06 +02:00 committed by GitHub
parent 16a36c1f6f
commit f2e14fb73c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ COPY . /usr/src/app/
WORKDIR /usr/src/app
RUN apt-get -qq update \
&& apt-get -y upgrade \
&& pip install --no-cache-dir -e . \
&& pip install --no-cache-dir . \
&& apt-get autoremove \
&& apt-get clean
VOLUME ["/data"]