From 5622194958c7cd40b80e36591a81e94662aaa621 Mon Sep 17 00:00:00 2001 From: "Zhu, Ling Dr (Elec Electronic Eng)" <l.zhu@surrey.ac.uk> Date: Tue, 21 Dec 2021 16:48:30 +0000 Subject: [PATCH] Add new file --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..32b9607 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM php:7.3-apache + +RUN apt-get clean +RUN apt-get update +RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq \ + git \ + tree \ + vim \ + wget \ + nano \ + iperf3 + +COPY workload_job.php /var/www/html/index.php +RUN chmod a+rx index.php +RUN export JOB_LOOP=1000000 +RUN export JOB_VAR=0.0002 -- GitLab