Dockerfile 263 B

123456789101112131415161718
  1. FROM centos:8
  2. RUN dnf -y update && dnf clean all
  3. RUN dnf install -y epel-release
  4. RUN dnf groupinstall "Infiniband Support" -y
  5. RUN dnf install -y opensm
  6. COPY opensm.conf /etc/rdma/opensm.conf
  7. COPY start.sh /
  8. RUN chmod +x /start.sh
  9. ENTRYPOINT ["/start.sh"]