From b57201d3fcb3c3e72f552c49443cd5e43c815ea3 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Wed, 23 Mar 2022 16:23:23 +0100 Subject: [PATCH] Docker: Fix tensorflow Dockerfile (#1964) There are no more *.diff files as of 4f05fde794c so the COPY command for *.diff makes building the container fail. --- docker/tensorflow/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/docker/tensorflow/Dockerfile b/docker/tensorflow/Dockerfile index 439f05d42..7a834b4f1 100644 --- a/docker/tensorflow/Dockerfile +++ b/docker/tensorflow/Dockerfile @@ -58,6 +58,5 @@ RUN mv bazel-0.24.1-linux-x86_64 /usr/local/bin/bazel && chmod 755 /usr/local/bi # Configure TensorFlow WORKDIR "/home/tensorflow/tensorflow-1.15.2" COPY ./*.sh ./ -COPY ./*.diff ./ COPY ./.tf_configure.bazelrc .tf_configure.bazelrc COPY ./Makefile Makefile