Skip to content

Commit f25bc0a

Browse files
committed
Fix devcontainer setup
1 parent e6ec913 commit f25bc0a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt-get update \
1515
&& apt-get -y install \
1616
curl \
1717
emacs \
18-
exa \
18+
eza \
1919
fd-find \
2020
fzf \
2121
git \
@@ -32,14 +32,12 @@ RUN apt-get update \
3232
openssh-client \
3333
procps \
3434
sudo \
35-
tldr \
3635
unzip \
3736
vim \
3837
libgtk2.0-0 \
3938
libgtk-3-0 \
4039
libgbm-dev \
4140
libnotify-dev \
42-
libgconf-2-4 \
4341
libnss3 \
4442
libxss1 \
4543
libasound2 \
@@ -53,6 +51,9 @@ RUN apt-get update \
5351
# Upgrade pip
5452
RUN pip install --upgrade pip
5553

54+
# Install tldr via npm (since it's not available in apt)
55+
RUN npm install -g tldr
56+
5657
COPY --chown=vscode:vscode .devcontainer/scripts/notify-dev-entrypoint.sh /usr/local/bin/
5758
RUN chmod +x /usr/local/bin/notify-dev-entrypoint.sh
5859

0 commit comments

Comments
 (0)