forked from tensorflow/haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring GPU Dockerfile in line with CPU Dockerfile
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ LABEL maintainer="TensorFlow authors <[email protected]>" | |
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 && \ | ||
|