Skip to content

Commit

Permalink
Do not install runtime in editable mode (grumpyhome#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
abitrolly committed Jun 16, 2020
1 parent 7dd31ca commit 59ce94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ WORKDIR /app
# run-time needs at least `grumpy run` to be built.
RUN cd grumpy-tools-src && pip install --editable .

# Install run-time
RUN cd grumpy-runtime-src && pip install --editable .
# Install run-time in non-editable mode
RUN cd grumpy-runtime-src && pip install .

0 comments on commit 59ce94e

Please sign in to comment.