Bring GPU Dockerfile in line with CPU Dockerfile

This commit is contained in:
Bart Schuurmans 2023-01-17 12:22:21 +01:00 committed by fkm3
parent e441c59093
commit 86a4a12aa8
1 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,6 @@ LABEL maintainer="TensorFlow authors <tensorflow-haskell@googlegroups.com>"
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 && \