summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Hansson <hansson.mattias@gmail.com>2019-03-28 18:36:33 +0100
committerNico Williams <nico@cryptonector.com>2019-03-29 08:19:41 -0500
commit70e04d6a8ecf87e80cb564fd39419ee36f4601e6 (patch)
tree60cb9f125695ffcf6d8d2e6fd884ac8bdb736aef
parentbcd594ed6957ec4fb996e2a37a9e68b94e898ac6 (diff)
Dockerfile: Specify locale settings
Avoid RuntimeError in pipenv by setting LC_ALL and LANG to C.UTF-8.
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8860eb01..1c1753c1 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