summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/workloads/syscall/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/workloads/syscall/Dockerfile')
-rw-r--r--benchmarks/workloads/syscall/Dockerfile6
1 files changed, 0 insertions, 6 deletions
diff --git a/benchmarks/workloads/syscall/Dockerfile b/benchmarks/workloads/syscall/Dockerfile
deleted file mode 100644
index a2088d953..000000000
--- a/benchmarks/workloads/syscall/Dockerfile
+++ /dev/null
@@ -1,6 +0,0 @@
-FROM gcc:latest
-COPY . /usr/src/syscall
-WORKDIR /usr/src/syscall
-RUN gcc -O2 -o syscall syscall.c
-ENV count 1000000
-CMD ["sh", "-c", "./syscall ${count}"]