mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-07 23:54:22 +08:00
Files
f63e632244f81a764334aba611f30a4a7b0cc8b3
27 lines
571 B
Docker
27 lines
571 B
Docker
# Dockerfile for RDMA Mount Performance Tests
|
|||
FROM ubuntu:22.04
|
|||
|
|||
# Install dependencies
|
|||
RUN apt-get update && apt-get install -y \
|
|||
curl \
|
|||
wget \
|
|||
ca-certificates \
|
|||
jq \
|
|||
bc \
|
|||
time \
|
|||
util-linux \
|
|||
coreutils \
|
|||
fio \
|
|||
iozone3 \
|
|||
&& rm -rf /var/lib/apt/lists/*
|
|||
|
|||
# Create test directories
|
|||
RUN mkdir -p /usr/local/bin /performance-results
|
|||
|
|||
# Copy test scripts
|
|||
COPY scripts/run-performance-tests.sh /usr/local/bin/run-performance-tests.sh
|
|||
RUN chmod +x /usr/local/bin/*.sh
|
|||
|
|||
# Default command
|
|||
CMD ["/usr/local/bin/run-performance-tests.sh"]
|