From f08ab8ffe64236ece41066fd4ce038b07348f5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Francisco=20San=20Nicol=C3=A1s=20Mart=C3=ADne?= =?UTF-8?q?z?= Date: Thu, 11 Jul 2024 10:49:19 +0200 Subject: [PATCH] Rework relative paths for ods-ci files --- ods_ci/build/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ods_ci/build/Dockerfile b/ods_ci/build/Dockerfile index 2b606d80e..90f3a6efb 100644 --- a/ods_ci/build/Dockerfile +++ b/ods_ci/build/Dockerfile @@ -56,9 +56,10 @@ COPY ods_ci/utils/scripts/ocm/templates/create_ldap_idp.jinja utils/scripts/ocm/ RUN chmod +x build/run.sh &&\ chmod +x build/clean_idp.sh -COPY ../pyproject.toml ../ -COPY ../poetry.lock ../ -COPY ../README.md ../ +COPY pyproject.toml ../ +COPY poetry.lock ../ +COPY README.md ../ + RUN alternatives --install /usr/local/bin/python3 python3 /usr/bin/python${PYTHON_VERSION} 1 RUN python3 --version RUN curl -sSL https://install.python-poetry.org | python3 -