github.com/dmaizel/tests@v0.0.0-20210728163746-cae6a2d9cee8/metrics/network/iperf_dockerfile/Dockerfile (about)

     1  # Copyright (c) 2018 Intel Corporation
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  # Usage: FROM [image name]
     6  FROM ubuntu:16.04
     7  
     8  # Version of the Dockerfile
     9  LABEL DOCKERFILE_VERSION="1.0"
    10  
    11  # Install iperf
    12  RUN apt-get update && \
    13      apt-get remove -y unattended-upgrades && \
    14      apt-get install -y iperf
    15  
    16  CMD ["/bin/bash"]