Skip to content
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
2 changes: 1 addition & 1 deletion runtimes/minimal/ubi9-python-3.12/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ USER 0
RUN ARCH=$(uname -m) && \
echo "Detected architecture: $ARCH" && \
PACKAGES="mesa-libGL skopeo" && \
if [ "$ARCH" = "s390x" ]; then \
if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then \
PACKAGES="$PACKAGES gcc g++ make openssl-devel autoconf automake libtool cmake"; \
fi && \
dnf install -y $PACKAGES && \
Expand Down
Loading