github.com/dmaizel/tests@v0.0.0-20210728163746-cae6a2d9cee8/Dockerfiles/BuildTest/Dockerfile (about)

     1  # Copyright (c) 2018 Intel Corporation
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  # Usage: FROM [image name]
     6  FROM busybox
     7  
     8  # Set environment variables
     9  ENV VAR "test_env_vars"
    10  
    11  RUN sh -c 'env'
    12  
    13  CMD ["/bin/bash"]