Skip to content

Commit

Permalink
Merge a66d303 into e6f67ac
Browse files Browse the repository at this point in the history
  • Loading branch information
mvidalgarcia committed Jan 9, 2020
2 parents e6f67ac + a66d303 commit 5283abf
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 @@ -31,8 +31,8 @@ ARG DEBUG=0
RUN if [ "${DEBUG}" -gt 0 ]; then pip install -r requirements-dev.txt; pip install -e .; else pip install .; fi;

# Building with locally-checked-out shared modules?
RUN if test -e modules/reana-commons; then pip install modules/reana-commons[kubernetes] --upgrade; fi
RUN if test -e modules/reana-db; then pip install modules/reana-db --upgrade; fi
RUN if test -e modules/reana-commons; then pip install -e modules/reana-commons[kubernetes] --upgrade; fi
RUN if test -e modules/reana-db; then pip install -e modules/reana-db --upgrade; fi

# Check if there are broken requirements
RUN pip check
Expand Down

0 comments on commit 5283abf

Please sign in to comment.