Skip to content

Commit

Permalink
Dev: remove temporary workaround for old requirements format; fix #323
Browse files Browse the repository at this point in the history
  • Loading branch information
rdimaio authored and bari12 committed Dec 9, 2024
1 parent 80b83cd commit 6e818f7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ RUN mkdir -p \

RUN python3 -m pip install --no-cache --upgrade pip && \
python3 -m pip install --no-cache --upgrade setuptools wheel && \
if [ -r /tmp/rucio/requirements.txt ]; then \
python3 -m pip install --no-cache --upgrade -r /tmp/rucio/requirements.txt ; \
elif [ -r /tmp/rucio/requirements/requirements.dev.txt ]; then \
if [ -r /tmp/rucio/requirements/requirements.dev.txt ]; then \
python3 -m pip install --no-cache --upgrade -r /tmp/rucio/requirements/requirements.dev.txt ; \
else \
python3 -m pip install --no-cache --upgrade -r /tmp/rucio/etc/pip-requires-client \
Expand Down

0 comments on commit 6e818f7

Please sign in to comment.