From: Mattias Hansson Date: Thu, 28 Mar 2019 17:36:33 +0000 (+0100) Subject: Dockerfile: Specify locale settings X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70e04d6a8ecf87e80cb564fd39419ee36f4601e6;p=jq Dockerfile: Specify locale settings Avoid RuntimeError in pipenv by setting LC_ALL and LANG to C.UTF-8. --- diff --git a/Dockerfile b/Dockerfile index 8860eb0..1c1753c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM debian:8 ENV DEBIAN_FRONTEND=noninteractive \ - DEBCONF_NONINTERACTIVE_SEEN=true + DEBCONF_NONINTERACTIVE_SEEN=true \ + LC_ALL=C.UTF-8 \ + LANG=C.UTF-8 COPY . /app