diff --git a/Dockerfile b/Dockerfile index 898f91b..2b33a3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ gdb \ git \ + less \ + locales \ man-db \ ssh-client \ zsh +# VSCode will use en_US for git operations, so make it available in the container +# https://github.com/microsoft/vscode/pull/210506 +RUN locale-gen en_US.UTF-8 + # Add oh my zsh RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"