Skip to content

Commit

Permalink
Upgrade gcc to 8 with devtoolset-8 for k-NN faiss lib compilation (#3732
Browse files Browse the repository at this point in the history
)

Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon committed Jul 13, 2023
1 parent f8acb33 commit 8cc6e62
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@ RUN ln -sfn /usr/local/bin/python3.9 /usr/bin/python3 && \
# Add k-NN Library dependencies
RUN yum install epel-release -y && yum repolist && yum install openblas-static lapack gcc-gfortran -y
RUN pip3 install cmake==3.23.3
# Upgrade gcc8
# The setup part is partially based on Austin Dewey's article:
# https://austindewey.com/2019/03/26/enabling-software-collections-binaries-on-a-docker-image/
RUN yum install -y centos-release-scl && yum install -y devtoolset-8 && yum clean all && \
echo "source scl_source enable devtoolset-8" > /etc/profile.d/scl_devtoolset8.sh
COPY --chown=0:0 config/scl_setup /usr/local/bin/scl_setup
ENV BASH_ENV="/usr/local/bin/scl_setup"
ENV ENV="/usr/local/bin/scl_setup"
ENV PROMPT_COMMAND=". /usr/local/bin/scl_setup"

# Change User
USER 1000
Expand Down

0 comments on commit 8cc6e62

Please sign in to comment.