github.com/kata-containers/tests@v0.0.0-20240307153542-772105b56064/metrics/density/sysbench-dockerfile/Dockerfile (about)

     1  # Copyright (c) 2022 Intel Corporation
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  # Usage: FROM [image name]
     6  FROM ubuntu:20.04
     7  
     8  # Version of the Dockerfile
     9  LABEL DOCKERFILE_VERSION="1.0"
    10  
    11  RUN apt-get update && \
    12  	apt-get install -y build-essential git curl sudo && \
    13  	apt-get remove -y unattended-upgrades && \
    14  	curl -OkL https://packagecloud.io/install/repositories/akopytov/sysbench/script.deb.sh && \
    15  	apt-get install -y sysbench
    16  
    17  CMD ["/bin/bash"]