github.com/kata-containers/tests@v0.0.0-20240307153542-772105b56064/stability/stressng_dockerfile/Dockerfile (about)

     1  # Copyright (c) 2023 Intel Corporation
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  FROM ubuntu:20.04
     6  
     7  # Version of the Dockerfile
     8  LABEL DOCKERFILE_VERSION="1.0"
     9  
    10  ENV DEBIAN_FRONTEND=noninteractive
    11  
    12  RUN apt-get update && \
    13  	apt-get install -y --no-install-recommends sudo build-essential curl && \
    14  	apt-get remove -y unattended-upgrades && \
    15  	apt-get install -y stress stress-ng
    16  
    17  CMD ["/bin/bash"]