From f2d3ea988dfdf9e4f7f0801d912e72e530030594 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Thu, 28 Sep 2023 16:35:22 +0000 Subject: [PATCH] tests: Add stressng dockerfile for stability tests This PR adds the stressng dockerfile for stability tests. Signed-off-by: Gabriela Cervantes --- tests/stability/stressng_dockerfile/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/stability/stressng_dockerfile/Dockerfile diff --git a/tests/stability/stressng_dockerfile/Dockerfile b/tests/stability/stressng_dockerfile/Dockerfile new file mode 100644 index 0000000000..b17002c1e4 --- /dev/null +++ b/tests/stability/stressng_dockerfile/Dockerfile @@ -0,0 +1,17 @@ +# Copyright (c) 2023 Intel Corporation +# +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:20.04 + +# Version of the Dockerfile +LABEL DOCKERFILE_VERSION="1.0" + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update && \ + apt-get install -y --no-install-recommends sudo build-essential curl && \ + apt-get remove -y unattended-upgrades && \ + apt-get install -y stress stress-ng + +CMD ["/bin/bash"]