mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-22 19:09:43 +01:00
Bring GPU Dockerfile in line with CPU Dockerfile
This commit is contained in:
parent
e441c59093
commit
86a4a12aa8
1 changed files with 3 additions and 3 deletions
|
@ -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 && \
|
||||
|
|
Loading…
Reference in a new issue