matheo
11/15/2016 - 6:55 PM

Bash Scripts

Bash Scripts

#!/bin/bash
( set -o posix ; set ) | less
ENV LANG=en_GB.UTF-8
RUN apt-get install -y locales && \
    sed -i -e "s/# $LANG.*/$LANG.UTF-8 UTF-8/" /etc/locale.gen && \
    dpkg-reconfigure --frontend=noninteractive locales && \
    update-locale LANG=$LANG