Skip to content

Commit 38a02b0

Browse files
committed
RHOAIENG-18582: Post ODH Elyra release (v4.3.0)
1 parent 11a6ba8 commit 38a02b0

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
@@ -351,7 +351,10 @@ fi
351351
# Install Python packages from pylock.toml
352352
COPY ${DATASCIENCE_SOURCE_CODE}/pylock.toml ./
353353
# Copy Elyra dependencies for air-gapped enviroment
354-
COPY ${DATASCIENCE_SOURCE_CODE}/utils ./utils/
354+
COPY --chown=1001 ${DATASCIENCE_SOURCE_CODE}/utils ./utils/
355+
# Download Elyra Bootstrapper
356+
RUN curl -L https://raw.githubusercontent.com/opendatahub-io/elyra/refs/tags/v4.3.1/elyra/kfp/bootstrapper.py \
357+
-o ./utils/bootstrapper.py
355358

356359
RUN --mount=type=cache,target=/root/.cache/pip \
357360
echo "Installing softwares and packages" && \

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
@@ -74,8 +74,12 @@ WORKDIR /opt/app-root/bin
7474

7575
# Install Python packages from requirements.txt
7676
COPY ${MINIMAL_SOURCE_CODE}/pylock.toml ./
77+
7778
# Copy Elyra dependencies for air-gapped enviroment
78-
COPY ${MINIMAL_SOURCE_CODE}/utils ./utils/
79+
COPY --chown=1001 ${MINIMAL_SOURCE_CODE}/utils ./utils/
80+
# Download Elyra Bootstrapper
81+
RUN curl -L https://raw.githubusercontent.com/opendatahub-io/elyra/refs/tags/v4.3.1/elyra/kfp/bootstrapper.py \
82+
-o ./utils/bootstrapper.py
7983

8084
RUN echo "Installing softwares and packages" && \
8185
# This may have to download and compile some dependencies, and as we don't lock requirements from `build-system.requires`,

0 commit comments

Comments
 (0)