-
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.
Updated locales to be able to print utf-8 from python.
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM nvidia/cuda:8.0 | ||
FROM nvidia/cuda:8.0-cudnn5-runtime-ubuntu16.04 | ||
|
||
MAINTAINER Till von Ahnen "[email protected]" | ||
|
||
|
@@ -15,3 +15,9 @@ RUN pip3 install --upgrade pip | |
|
||
# install everything needed | ||
RUN pip3 install tensorflow-gpu numpy scipy scikit-learn pillow h5py keras | ||
|
||
# setup missing locale | ||
RUN locale-gen en_US.UTF-8 | ||
ENV LC_ALL=en_US.UTF-8 | ||
ENV LANG=en_US.UTF-8 | ||
ENV LANGUAGE=en_US.UTF-8 |