Skip to content

Commit

Permalink
build(docker): non-editable submodules in "latest" mode (#416)
Browse files Browse the repository at this point in the history
When running development cluster in "latest" mode, install shared
modules in non-editable mode. The editable mode should be reserved only
for development clusters in "debug" mode with the live code reload.
  • Loading branch information
tiborsimko committed Jan 12, 2024
1 parent fca6f74 commit 3bdda63
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions Dockerfile
Expand Up @@ -107,9 +107,21 @@ RUN if [ "${DEBUG}" -gt 0 ]; then \
fi

# Are we building with locally-checked-out shared modules?
# hadolint ignore=SC2102
RUN if test -e modules/reana-commons; then pip install --no-cache-dir -e modules/reana-commons[kubernetes] --upgrade; fi
RUN if test -e modules/reana-db; then pip install --no-cache-dir -e modules/reana-db --upgrade; fi
# hadolint ignore=DL3013
RUN if test -e modules/reana-commons; then \
if [ "${DEBUG}" -gt 0 ]; then \
pip install --no-cache-dir -e "modules/reana-commons[kubernetes]" --upgrade; \
else \
pip install --no-cache-dir "modules/reana-commons[kubernetes]" --upgrade; \
fi \
fi; \
if test -e modules/reana-db; then \
if [ "${DEBUG}" -gt 0 ]; then \
pip install --no-cache-dir -e "modules/reana-db" --upgrade; \
else \
pip install --no-cache-dir "modules/reana-db" --upgrade; \
fi \
fi

# Check for any broken Python dependencies
RUN pip check
Expand Down

0 comments on commit 3bdda63

Please sign in to comment.