File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,13 @@ RUN systemctl enable docker
6464# Create a symlink for standalone docker-compose usage
6565RUN ln -s /usr/libexec/docker/cli-plugins/docker-compose /usr/bin/docker-compose
6666
67+ # Generate the desired locale (en_US.UTF-8)
68+ RUN locale-gen en_US.UTF-8
69+
6770# Make typing unicode characters in the terminal work.
6871ENV LANG=en_US.UTF-8
72+ ENV LANGUAGE=en_US.UTF-8
73+ ENV LC_ALL=en_US.UTF-8
6974
7075# Remove the `ubuntu` user and add a user `coder` so that you're not developing as the `root` user
7176RUN userdel -r ubuntu && \
Original file line number Diff line number Diff line change @@ -9,11 +9,18 @@ RUN apt-get update && \
99 curl \
1010 git \
1111 jq \
12+ locales \
1213 sudo \
1314 && rm -rf /var/lib/apt/lists/*
1415
16+ # Generate the desired locale (en_US.UTF-8)
17+ RUN locale-gen en_US.UTF-8
18+
1519# Make typing unicode characters in the terminal work.
1620ENV LANG=en_US.UTF-8
21+ ENV LANGUAGE=en_US.UTF-8
22+ ENV LC_ALL=en_US.UTF-8
23+
1724# Remove the `ubuntu` user and add a user `coder` so that you're not developing as the `root` user
1825RUN userdel -r ubuntu && \
1926 useradd coder \
You can’t perform that action at this time.
0 commit comments