Dockerfile.performance-test 571 B

1234567891011121314151617181920212223242526
  1. # Dockerfile for RDMA Mount Performance Tests
  2. FROM ubuntu:22.04
  3. # Install dependencies
  4. RUN apt-get update && apt-get install -y \
  5. curl \
  6. wget \
  7. ca-certificates \
  8. jq \
  9. bc \
  10. time \
  11. util-linux \
  12. coreutils \
  13. fio \
  14. iozone3 \
  15. && rm -rf /var/lib/apt/lists/*
  16. # Create test directories
  17. RUN mkdir -p /usr/local/bin /performance-results
  18. # Copy test scripts
  19. COPY scripts/run-performance-tests.sh /usr/local/bin/run-performance-tests.sh
  20. RUN chmod +x /usr/local/bin/*.sh
  21. # Default command
  22. CMD ["/usr/local/bin/run-performance-tests.sh"]