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:
committed by
Nico Williams
parent
bcd594ed69
commit
70e04d6a8e
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user