]> granicus.if.org Git - jq/commitdiff
Dockerfile: Specify locale settings
authorMattias Hansson <hansson.mattias@gmail.com>
Thu, 28 Mar 2019 17:36:33 +0000 (18:36 +0100)
committerNico Williams <nico@cryptonector.com>
Fri, 29 Mar 2019 13:19:41 +0000 (08:19 -0500)
Avoid RuntimeError in pipenv by setting LC_ALL and LANG to C.UTF-8.

Dockerfile

index 8860eb016fc88a324743efc16d9e10186505f3a8..1c1753c16862c7a1d803c39a34f38be20c3fa4d9 100644 (file)
@@ -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