Dockerfile: Use the Ubuntu 14.04 image with the locale fix.

CircleCI's LXC AppArmor configuration stops us from trying to change the
locale. So, we create a base image where the locale is already changed
to en_US.UTF-8. This image is part of the docker-stacks now. As
DockerHub has no such constraints we have an automated build creating
that image so we can easily pull it into here. The base image remains
Ubuntu:14.04 and the configuration is really no different except for
moving this change into the base image.
This commit is contained in:
John Kirkham 2016-01-28 21:30:25 -05:00
parent ee8e3e4ae3
commit 3f78a3edb4

View File

@ -2,7 +2,7 @@
# Another Docker container should inherit with `FROM jupyter/notebook`
# to run actual services.
FROM ubuntu:14.04
FROM jupyter/ubuntu_14_04_locale_fix
MAINTAINER Project Jupyter <jupyter@googlegroups.com>