diff --git a/dev/Dockerfile b/dev/Dockerfile index e582313..1cd4e2f 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -74,8 +74,8 @@ 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 ; \ + 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 \ -r /tmp/rucio/etc/pip-requires -r /tmp/rucio/etc/pip-requires-test psycopg2-binary ; \