From 58642401920ee1e8595157965de4163a81938e25 Mon Sep 17 00:00:00 2001 From: eoli3n Date: Mon, 25 Dec 2017 21:37:13 +0100 Subject: [PATCH] polybar temperature --- docker/archlinux/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) 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