1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Dockerfile: Specify locale settings

Avoid RuntimeError in pipenv by setting LC_ALL and LANG to C.UTF-8.
This commit is contained in:
Mattias Hansson
2019-03-28 18:36:33 +01:00
committed by Nico Williams
parent bcd594ed69
commit 70e04d6a8e

View File

@ -1,7 +1,9 @@
FROM debian:8 FROM debian:8
ENV DEBIAN_FRONTEND=noninteractive \ ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NONINTERACTIVE_SEEN=true DEBCONF_NONINTERACTIVE_SEEN=true \
LC_ALL=C.UTF-8 \
LANG=C.UTF-8
COPY . /app COPY . /app