github.com/kata-containers/tests@v0.0.0-20240307153542-772105b56064/metrics/machine_learning/tensorflow_dockerfile/Dockerfile (about)

     1  # Copyright (c) 2023 Intel Corporation
     2  #
     3  # SPDX-License-Identifier: Apache-2.0
     4  
     5  # Usage: FROM [image name]
     6  FROM intel/intel-optimized-tensorflow:2.9.1
     7  
     8  # Version of the Dockerfile
     9  LABEL DOCKERFILE_VERSION="1.0"
    10  
    11  ENV DEBIAN_FRONTEND=noninteractive
    12  
    13  RUN apt-get update && \
    14  	apt-get install -y --no-install-recommends build-essential git && \
    15  	apt-get remove -y unattended-upgrades && \
    16  	git clone https://github.com/tensorflow/benchmarks
    17  
    18  CMD ["/bin/bash"]