This commit is contained in:
2025-05-26 18:13:44 +05:00
commit 51a1f3c61b
6 changed files with 283 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt install -y \
apt-utils \
libzip-dev \
nano \
php7.4-zip \
wget
RUN wget http://phoronix-test-suite.com/releases/repo/pts.debian/files/phoronix-test-suite_10.4.0_all.deb && \
apt install -y ./phoronix-test-suite_10.4.0_all.deb
RUN phoronix-test-suite install pts/osbench \
pts/pybench \
pts/tiobench \
pts/ramspeed \
pts/compress-7zip \
pts/openssl \
pts/sockperf
COPY hardware/suite-definition.xml /var/lib/phoronix-test-suite/test-suites/local/hardware/suite-definition.xml