From 0f2ab96d6057d85e153a5187b53acb4f68513f14 Mon Sep 17 00:00:00 2001 From: rdimaio Date: Thu, 30 May 2024 00:57:25 +0200 Subject: [PATCH] Testing: Modify filename of requirements file; rucio#6767 --- dev/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ; \