From f102217b816a6ca4fca7df642f4defa80231b5e1 Mon Sep 17 00:00:00 2001 From: Philippe Pepos Petitclerc Date: Fri, 13 Feb 2015 16:28:49 -0500 Subject: [PATCH] Added locale in container to support non-ascii characters in grunt-sass/scss --- container/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/container/Dockerfile b/container/Dockerfile index 006fef1..ab2d4dd 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -1,6 +1,12 @@ FROM ubuntu:trusty MAINTAINER Philippe Pepos Petitclerc +# Set the locale +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 + RUN apt-get update RUN apt-get install -yq apache2 npm nodejs-legacy supervisor ruby RUN npm install -g grunt-cli