From 86a4a12aa8e9a9a0ceb14197f86be7c325bd89f0 Mon Sep 17 00:00:00 2001 From: Bart Schuurmans Date: Tue, 17 Jan 2023 12:22:21 +0100 Subject: [PATCH] Bring GPU Dockerfile in line with CPU Dockerfile --- docker/gpu/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/gpu/Dockerfile b/docker/gpu/Dockerfile index dfc22c7..c2c6024 100644 --- a/docker/gpu/Dockerfile +++ b/docker/gpu/Dockerfile @@ -6,8 +6,6 @@ LABEL maintainer="TensorFlow authors " RUN apt-get update RUN apt-get install -y \ - # stack needs git - git \ # Required by snappy-frames dependency. libsnappy-dev \ # Avoids /usr/bin/ld: cannot find -ltinfo @@ -19,7 +17,9 @@ RUN apt-get install -y \ curl \ unzip \ # Required for locales configuration. - locales + locales \ + # Required for tcp connections by stack (See: https://github.com/tensorflow/haskell/issues/182) + netbase # Support output of Unicode characters. RUN dpkg-reconfigure locales && \