Delete bazelbuild-arm32v7.partial.Dockerfile
diff --git a/tensorflow/tools/dockerfiles/partials/ubuntu/bazelbuild-arm32v7.partial.Dockerfile b/tensorflow/tools/dockerfiles/partials/ubuntu/bazelbuild-arm32v7.partial.Dockerfile
deleted file mode 100644
index b833657..0000000
--- a/tensorflow/tools/dockerfiles/partials/ubuntu/bazelbuild-arm32v7.partial.Dockerfile
+++ /dev/null
@@ -1,35 +0,0 @@
-RUN apt-get update && apt-get install -y \
-    build-essential \
-    curl \
-    git \
-    openjdk-8-jdk \
-    python3-dev \
-    virtualenv \
-    swig
-
-RUN apt-get update && apt-get install -y \
-    python3-pil \
-    python3-h5py \
-    python3-keras-preprocessing \
-    python3-matplotlib \
-    python3-mock \
-    python3-numpy \
-    python3-scipy \
-    python3-sklearn \
-    python3-pandas \
-    python3-portpicker
-
-RUN python3 -m pip --no-cache-dir install \
-    enum34
-
-# Build and install bazel
-ENV BAZEL_VERSION 3.0.0
-WORKDIR /
-RUN mkdir /bazel && \
-    cd /bazel && \
-    curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-dist.zip && \
-    unzip bazel-$BAZEL_VERSION-dist.zip && \
-    bash ./compile.sh && \
-    cp output/bazel /usr/local/bin/ && \
-    rm -rf /bazel && \
-    cd -