diff options
author | mbeierl <mark.beierl@dell.com> | 2018-07-05 15:22:43 -0400 |
---|---|---|
committer | mbeierl <mark.beierl@dell.com> | 2018-07-06 16:40:31 -0400 |
commit | ff389f460711b17db2070ca90417f7ebbc0eff56 (patch) | |
tree | 6292493f1acad91b406bfc126885c5bf8c6532ca /docker/storperf-master/Dockerfile | |
parent | 3de258b9d0f6d4249a5e7f42eec41fcb0080bc66 (diff) |
Support Custom Workloads
Refactors interaction with test_executor to clean up the
tight coupling.
Adds ability to specify custom workloads.
Change-Id: Idbadcec1f42714e96c5f96d1e45c05982a531503
JIRA: STORPERF-246
Co-Authored-By: Ameed.Ashour.Ext@Nokia.com
Signed-off-by: mbeierl <mark.beierl@dell.com>
Diffstat (limited to 'docker/storperf-master/Dockerfile')
-rw-r--r-- | docker/storperf-master/Dockerfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/storperf-master/Dockerfile b/docker/storperf-master/Dockerfile index fec3931..c95e3ca 100644 --- a/docker/storperf-master/Dockerfile +++ b/docker/storperf-master/Dockerfile @@ -21,7 +21,7 @@ FROM multiarch/alpine:$ARCH-$ALPINE_VERSION as storperf-builder RUN ulimit -n 1024 -LABEL version="5.0" description="OPNFV Storperf Docker container" +LABEL version="7.0" description="OPNFV Storperf Docker container" ARG BRANCH=master @@ -30,6 +30,7 @@ ENV repos_dir /home/opnfv/repos RUN apk --no-cache add --update \ git \ alpine-sdk \ + coreutils \ linux-headers \ libaio \ libaio-dev \ @@ -38,8 +39,8 @@ RUN apk --no-cache add --update \ # Third party git fetches RUN git config --global http.sslVerify false RUN git clone http://git.kernel.dk/fio.git ${repos_dir}/fio -RUN cd ${repos_dir}/fio && git checkout tags/fio-2.99 -RUN cd ${repos_dir}/fio && EXTFLAGS="-static" make install +RUN cd ${repos_dir}/fio && git checkout tags/fio-3.7 +RUN cd ${repos_dir}/fio && EXTFLAGS="-static" make -j $(grep -c ^processor /proc/cpuinfo) install # Build StorPerf |