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 e71a9a8 commit 674df9cCopy full SHA for 674df9c
Dockerfile
@@ -10,10 +10,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
10
curl \
11
gdb \
12
git \
13
+ less \
14
+ locales \
15
man-db \
16
ssh-client \
17
zsh
18
19
+# VSCode will use en_US for git operations, so make it available in the container
20
+# https://github.com/microsoft/vscode/pull/210506
21
+RUN locale-gen en_US.UTF-8
22
+
23
# Add oh my zsh
24
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
25
0 commit comments