Skip to content

Commit

Permalink
Merge 2c143e6 into 488fcce
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego committed Jun 20, 2019
2 parents 488fcce + 2c143e6 commit 03a9727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -33,8 +33,8 @@ RUN pip install requirements-builder && \
COPY . /code

# Debug off by default
ARG DEBUG=false
RUN if [ "${DEBUG}" = "true" ]; then pip install -r requirements-dev.txt; pip install -e .; else pip install .; fi;
ARG DEBUG=0
RUN if [ "${DEBUG}" -eq 1 ]; 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 --upgrade; fi
Expand Down

0 comments on commit 03a9727

Please sign in to comment.