mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-15 22:53:43 +00:00
tests: Add stressng dockerfile for stability tests
This PR adds the stressng dockerfile for stability tests.
Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
(cherry picked from commit f2d3ea988d
)
This commit is contained in:
parent
e95d3b1be5
commit
240c584ae2
17
tests/stability/stressng_dockerfile/Dockerfile
Normal file
17
tests/stability/stressng_dockerfile/Dockerfile
Normal file
@ -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"]
|
Loading…
Reference in New Issue
Block a user