diff --git a/docker/archlinux/Dockerfile b/docker/archlinux/Dockerfile index bfac6dc..37567ef 100644 --- a/docker/archlinux/Dockerfile +++ b/docker/archlinux/Dockerfile @@ -1,4 +1,9 @@ FROM base/archlinux +# Locales keyboard +RUN echo "fr_FR.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo 'LANG="fr_FR.UTF-8"' > /etc/locale.conf +ENV LANG="fr_FR.UTF-8" # Archlinux Deps RUN pacman -Syu --noconfirm \ sudo \ @@ -34,6 +39,7 @@ RUN echo "test ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers # User run USER test WORKDIR /home/test/ +ENV LANG="fr_FR.UTF-8" RUN git clone --recursive https://github.com/eoli3n/dotfiles RUN cd /tmp; curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=packer-git RUN cd /tmp; makepkg PKGBUILD --install --needed --noconfirm