mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-23 03:19:44 +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 update
|
||||||
|
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
# stack needs git
|
|
||||||
git \
|
|
||||||
# Required by snappy-frames dependency.
|
# Required by snappy-frames dependency.
|
||||||
libsnappy-dev \
|
libsnappy-dev \
|
||||||
# Avoids /usr/bin/ld: cannot find -ltinfo
|
# Avoids /usr/bin/ld: cannot find -ltinfo
|
||||||
|
@ -19,7 +17,9 @@ RUN apt-get install -y \
|
||||||
curl \
|
curl \
|
||||||
unzip \
|
unzip \
|
||||||
# Required for locales configuration.
|
# 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.
|
# Support output of Unicode characters.
|
||||||
RUN dpkg-reconfigure locales && \
|
RUN dpkg-reconfigure locales && \
|
||||||
|
|
Loading…
Reference in a new issue