Dockerfile 276 B

1234567891011121314
  1. FROM rockylinux/rockylinux:8.5
  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"]