Sur mon serveur NodeJS (fonctionnant en tant qu'image docker) ...
Dockerfile
FROM node:4.8-slim
RUN apt-get update -y && \
apt-get install -yqq locales git
... aucun paramètre régional anglais n'est installé:
RUN locale -a
me donne
C
C.UTF-8
POSIX
Dans mon dockerfile j'essaye d'ajouter la langue manquante
RUN apt-get install -y language-pack-en
Mais cela me donne
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package language-pack-en
Alors, comment puis-je ajouter le pack de langue manquant?
Mise à jour
En utilisant
Sudo locale-gen en_US
Sudo locale-gen en_US.UTF-8
Sudo update-locale
me donne cette erreur:
Perl: warning: Setting locale failed.
Perl: warning: Please check that your locale settings:
LANGUAGE = "en_US:en",
LC_ALL = "en_US.UTF-8",
LANG = "en_US.UTF-8"
are supported and installed on your system.
Perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_COLLATE to
paramètres régionaux par défaut: aucun fichier ou répertoire de ce type
S'il s'agit d'une image Debian, vous pouvez ajouter ce qui suit dans votre Dockerfile
RUN apt-get install -y locales locales-all
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
essayer:
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_TYPE=en_US.UTF-8
Sudo locale-gen
Sudo dpkg-reconfigure locales
Normalement, vous pouvez installer d'autres paramètres régionaux avec:
Sudo locale-gen en_US
Sudo locale-gen en_US.UTF-8
Sudo update-locale
alors vous pouvez changer les valeurs dans /etc/default/locale
.