Skip to content

Commit 14f2d8b

Browse files
authored
Merge pull request #1484 from red-hat-data-services/wznoinsk_rhoai-2.24_konflux-ppc
updating runtime-minimal konflux image for ppc64le
2 parents ad92bed + 7f963dd commit 14f2d8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtimes/minimal/ubi9-python-3.11/Dockerfile.konflux.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ USER 0
1212
RUN ARCH=$(uname -m) && \
1313
echo "Detected architecture: $ARCH" && \
1414
PACKAGES="mesa-libGL skopeo" && \
15-
if [ "$ARCH" = "s390x" ]; then \
15+
if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then \
1616
PACKAGES="$PACKAGES gcc g++ make openssl-devel autoconf automake libtool cmake"; \
1717
fi && \
1818
dnf install -y $PACKAGES && \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ USER 0
1212
RUN ARCH=$(uname -m) && \
1313
echo "Detected architecture: $ARCH" && \
1414
PACKAGES="mesa-libGL skopeo" && \
15-
if [ "$ARCH" = "s390x" ]; then \
15+
if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then \
1616
PACKAGES="$PACKAGES gcc g++ make openssl-devel autoconf automake libtool cmake"; \
1717
fi && \
1818
dnf install -y $PACKAGES && \

0 commit comments

Comments
 (0)