File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,18 @@ FROM registry.access.redhat.com/ubi9/ubi:9.3
44# Install necessary dependencies
55RUN 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
1214RUN 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+
1519COPY requirements.txt .
1620# Install Python packages via pip
1721RUN 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
3337CMD ["/ppc64le-build.sh"]
38+
39+
40+ RUN which zip || echo "zip command not found"
You can’t perform that action at this time.
0 commit comments