mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Set docker image locale to UTF-8.
This commit is contained in:
parent
2a42c14544
commit
604b565c94
1 changed files with 8 additions and 2 deletions
|
@ -4,7 +4,10 @@ ENV \
|
||||||
#
|
#
|
||||||
# Some APT packages like 'tzdata' wait for user input on install by default.
|
# Some APT packages like 'tzdata' wait for user input on install by default.
|
||||||
# https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive
|
# https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive
|
||||||
DEBIAN_FRONTEND=noninteractive
|
DEBIAN_FRONTEND=noninteractive \
|
||||||
|
LANG=C.UTF-8 \
|
||||||
|
LANGUAGE=C.UTF-8 \
|
||||||
|
LC_ALL=C.UTF-8
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update -q && \
|
apt-get update -q && \
|
||||||
|
@ -30,5 +33,8 @@ RUN \
|
||||||
gcc \
|
gcc \
|
||||||
#
|
#
|
||||||
# Installing rustup and sccache (build dockerfile) or fetching build artifacts (run tasks)
|
# Installing rustup and sccache (build dockerfile) or fetching build artifacts (run tasks)
|
||||||
curl
|
curl \
|
||||||
|
# Setting the default locale
|
||||||
|
locales \
|
||||||
|
locales-all
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue