Skip to content

Commit 59ce94e

Browse files
committed
Do not install runtime in editable mode (grumpyhome#152)
1 parent 7dd31ca commit 59ce94e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ WORKDIR /app
2424
# run-time needs at least `grumpy run` to be built.
2525
RUN cd grumpy-tools-src && pip install --editable .
2626

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

0 commit comments

Comments
 (0)