Skip to content

Commit c66bce4

Browse files
added zip dependency
1 parent 00d7ddb commit c66bce4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/Dockerfile.ppc64le

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ FROM registry.access.redhat.com/ubi9/ubi:9.3
44
# Install necessary dependencies
55
RUN dnf install -y \
66
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
7-
dnf install -y git cmake ninja-build gcc-c++ rust cargo zip dos2unix \
7+
dnf install -y git cmake ninja-build gcc-c++ rust cargo \
88
python3 python3-devel && \
99
dnf clean all
10+
RUN dnf install -y zip && \
11+
which zip || echo "zip command not found"
1012

1113
# Set Python and pip aliases to use Python 3.9
1214
RUN ln -sf /usr/bin/python3 /usr/bin/python && \
1315
ln -sf /usr/bin/pip3 /usr/bin/pip
1416

17+
ENV PATH="/usr/local/bin:/usr/bin:/bin:${PATH}"
18+
1519
COPY requirements.txt .
1620
# Install Python packages via pip
1721
RUN pip install wheel setuptools pyyaml typing_extensions expecttest
@@ -31,3 +35,6 @@ RUN chmod +x /ppc64le-build.sh
3135

3236
# Use CMD to run the script
3337
CMD ["/ppc64le-build.sh"]
38+
39+
40+
RUN which zip || echo "zip command not found"

0 commit comments

Comments
 (0)