Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
tensorflow: Add Mobilnet Tensorflow Dockerfile
Browse files Browse the repository at this point in the history
This PR adds the Mobilnet Tensorflow Dockerfile for kata containers
metrics.

Fixes #5683

Signed-off-by: Gabriela Cervantes <[email protected]>
  • Loading branch information
GabyCT committed Jun 6, 2023
1 parent 1188a01 commit 9a5e4c2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions metrics/machine_learning/tensorflow_ai_dockerfile/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (c) 2023 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0

# Usage: FROM [image name]
FROM ubuntu:20.04

ENV DEBIAN_FRONTEND=noninteractive

# Version of the Dockerfile
LABEL DOCKERFILE_VERSION="1.0"

RUN apt-get update && \
apt-get install -y --no-install-recommends wget nano curl build-essential git && \
apt-get install -y python3.8 python3-pip && \
pip install intel-tensorflow-avx512==2.8.0 && \
pip install protobuf==3.20.* && \
wget https://storage.googleapis.com/intel-optimized-tensorflow/models/v1_8/mobilenet_v1_1.0_224_frozen.pb && \
git clone https://github.com/IntelAI/models.git

CMD ["/bin/bash"]

0 comments on commit 9a5e4c2

Please sign in to comment.