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 2e8a344 commit 455163fCopy full SHA for 455163f
images/base/ubuntu.Dockerfile
@@ -64,8 +64,13 @@ RUN systemctl enable docker
64
# Create a symlink for standalone docker-compose usage
65
RUN ln -s /usr/libexec/docker/cli-plugins/docker-compose /usr/bin/docker-compose
66
67
+# Generate the desired locale (en_US.UTF-8)
68
+RUN locale-gen en_US.UTF-8
69
+
70
# Make typing unicode characters in the terminal work.
71
ENV LANG=en_US.UTF-8
72
+ENV LANGUAGE=en_US.UTF-8
73
+ENV LC_ALL=en_US.UTF-8
74
75
# Remove the `ubuntu` user and add a user `coder` so that you're not developing as the `root` user
76
RUN userdel -r ubuntu && \
0 commit comments