Skip to content

Commit 674df9c

Browse files
authored
Add deps for VSCode (#10)
- Need en_US locale microsoft/vscode#210506 - Need less for `uv help ...`
1 parent e71a9a8 commit 674df9c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1010
curl \
1111
gdb \
1212
git \
13+
less \
14+
locales \
1315
man-db \
1416
ssh-client \
1517
zsh
1618

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+
1723
# Add oh my zsh
1824
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
1925

0 commit comments

Comments
 (0)