We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96893e5 commit bfbcd84Copy full SHA for bfbcd84
images/minimal/ubuntu.Dockerfile
@@ -12,8 +12,14 @@ RUN apt-get update && \
12
sudo \
13
&& rm -rf /var/lib/apt/lists/*
14
15
+# Generate the desired locale (en_US.UTF-8)
16
+RUN locale-gen en_US.UTF-8
17
+
18
# Make typing unicode characters in the terminal work.
19
ENV LANG=en_US.UTF-8
20
+ENV LANGUAGE=en_US.UTF-8
21
+ENV LC_ALL=en_US.UTF-8
22
23
# Remove the `ubuntu` user and add a user `coder` so that you're not developing as the `root` user
24
RUN userdel -r ubuntu && \
25
useradd coder \
0 commit comments