Skip to content

Commit

Permalink
update PATH to include cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Nov 17, 2023
1 parent f2f83ba commit 7bd1f04
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ ENV LD_LIBRARY_PATH=${LD_LIBRARY_PATH_ARG}
ENV PATH=${PREPEND_PATH}${PATH}
ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

ENV PATH ${DEVTOOLSET_ROOTPATH}/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

ADD scripts /tmp/scripts
RUN cd /tmp/scripts && /tmp/scripts/manylinux/install_centos.sh
RUN if [ "$BUILD_LORT" = true ];\
then cd /tmp/scripts && /tmp/scripts/manylinux/install_centos.sh && /tmp/scripts/manylinux/install_deps_lort.sh ; \
then cd /tmp/scripts && /tmp/scripts/manylinux/install_deps_lort.sh ; \
elif [ "$BUILD_ATEN" = true ];\
then cd /tmp/scripts && /tmp/scripts/manylinux/install_centos.sh && /tmp/scripts/manylinux/install_deps_aten.sh ; \
then cd /tmp/scripts && /tmp/scripts/manylinux/install_deps_aten.sh ; \
fi
RUN rm -rf /tmp/scripts

Expand Down

0 comments on commit 7bd1f04

Please sign in to comment.