diff --git a/worker/Dockerfile b/worker/Dockerfile index 56fdf78..b1def7e 100644 --- a/worker/Dockerfile +++ b/worker/Dockerfile @@ -27,6 +27,7 @@ FROM ubuntu:22.04 # See #8 for more details. RUN apt-get update && apt-get install -y \ build-essential \ + locales \ ocaml \ automake \ autoconf \ @@ -191,6 +192,12 @@ ENV CARGO_HOME=/opt/rust RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path RUN chmod 777 /opt/rust -R +# unicode support +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 + # set environment variables ENV DEBIAN_FRONTEND noninteractive ENV TERM xterm