From 55a2af912c042254853024081b069a44178a5c4b Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 10 Sep 2024 10:53:16 +0000 Subject: [PATCH] setup en_US.UTF-8 locale --- build/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index c07b308..397d2c8 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -25,7 +25,9 @@ ARG USER=coder ARG USER_ID=30033 ARG GROUP_ID=30033 -RUN apt-get install -y ruby git direnv unzip +RUN apt-get install -y ruby git direnv unzip locales + +RUN locale-gen en_US.UTF-8 RUN addgroup --gid $GROUP_ID ${USER} \ && useradd --groups sudo --no-create-home --shell /bin/bash ${USER} --uid ${USER_ID} --gid ${GROUP_ID} \