summaryrefslogtreecommitdiffhomepage
path: root/images/basic/fsstress/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'images/basic/fsstress/Dockerfile')
-rw-r--r--images/basic/fsstress/Dockerfile17
1 files changed, 0 insertions, 17 deletions
diff --git a/images/basic/fsstress/Dockerfile b/images/basic/fsstress/Dockerfile
deleted file mode 100644
index 84604ead5..000000000
--- a/images/basic/fsstress/Dockerfile
+++ /dev/null
@@ -1,17 +0,0 @@
-# Usage: docker run --rm fsstress -d /test -n 10000 -p 100 -X -v
-FROM alpine
-
-RUN apk add git
-RUN git clone https://github.com/linux-test-project/ltp.git --depth 1
-
-WORKDIR /ltp
-RUN ./travis/alpine.sh
-RUN make autotools && ./configure
-RUN make -C testcases/kernel/fs/fsstress
-RUN cp ./testcases/kernel/fs/fsstress/fsstress /usr/bin
-RUN rm -rf /fsstress /tmp
-
-WORKDIR /
-# This is required, otherwise running with -p > 1 prematurelly exits.
-COPY run.sh .
-ENTRYPOINT ["/run.sh"]