Skip to content

Commit d18f1d7

Browse files
jesuinojiridanek
authored andcommitted
RHOAIENG-18582: Post ODH Elyra release (v4.3.0)
1 parent 72a592a commit d18f1d7

File tree

14 files changed

+29
-5390
lines changed

14 files changed

+29
-5390
lines changed

runtimes/datascience/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,10 @@ EOF
387387
# Install Python packages from pylock.toml
388388
COPY ${DATASCIENCE_SOURCE_CODE}/pylock.toml ./
389389
# Copy Elyra dependencies for air-gapped enviroment
390-
COPY ${DATASCIENCE_SOURCE_CODE}/utils ./utils/
390+
COPY --chown=1001 ${DATASCIENCE_SOURCE_CODE}/utils ./utils/
391+
# Download Elyra Bootstrapper
392+
RUN curl -L https://raw.githubusercontent.com/opendatahub-io/elyra/refs/tags/v4.3.1/elyra/kfp/bootstrapper.py \
393+
-o ./utils/bootstrapper.py
391394

392395
RUN --mount=type=cache,target=/root/.cache/pip /bin/bash <<'EOF'
393396
set -Eeuxo pipefail

runtimes/datascience/ubi9-python-3.12/utils/bootstrapper.py

Lines changed: 0 additions & 769 deletions
This file was deleted.

runtimes/minimal/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,12 @@ WORKDIR /opt/app-root/bin
8686

8787
# Install Python packages from requirements.txt
8888
COPY ${MINIMAL_SOURCE_CODE}/pylock.toml ./
89+
8990
# Copy Elyra dependencies for air-gapped enviroment
90-
COPY ${MINIMAL_SOURCE_CODE}/utils ./utils/
91+
COPY --chown=1001 ${MINIMAL_SOURCE_CODE}/utils ./utils/
92+
# Download Elyra Bootstrapper
93+
RUN curl -L https://raw.githubusercontent.com/opendatahub-io/elyra/refs/tags/v4.3.1/elyra/kfp/bootstrapper.py \
94+
-o ./utils/bootstrapper.py
9195

9296
RUN /bin/bash <<'EOF'
9397
set -Eeuxo pipefail

0 commit comments

Comments
 (0)