From 4029f2b9d3c6af568e1a45689d51cf599beb87dd Mon Sep 17 00:00:00 2001 From: Adam Gordon Date: Thu, 7 Mar 2019 08:59:56 -0500 Subject: [PATCH] Generate the en_US.UTF-8 locale in the docker image Fixes issues when working with utf-8 text from the command line --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ec4554594811..002ce8992234 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,8 @@ FROM ubuntu:18.10 RUN apt-get update RUN apt-get install -y openssl RUN apt-get install -y net-tools +RUN apt-get install -y locales +RUN locale-gen en_US.UTF-8 WORKDIR /root/project COPY --from=0 /src/packages/server/cli-linux /usr/local/bin/code-server EXPOSE 8443