Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed May 29, 2024
2 parents c232be7 + 2578533 commit 5baf617
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ COPY --from=extract-deps \
/opt/python/
# Install with or without monitoring, depending on flag
RUN pip install --user --no-warn-script-location --no-cache-dir \
$(if [ "$MONITORING" = "true" ]; then \
echo "-r /opt/python/requirements-monitoring.txt"; \
else \
$(if [ -z "$MONITORING" ]; then \
echo "-r /opt/python/requirements.txt"; \
else \
echo "-r /opt/python/requirements-monitoring.txt"; \
fi)


Expand Down

0 comments on commit 5baf617

Please sign in to comment.