Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework relative paths for ods-ci files #1631

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ods_ci/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 -
Expand Down
Loading