Skip to content

Commit f477749

Browse files
committed
Fix docker build
1 parent 9b630c7 commit f477749

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine
22

3-
RUN apk update && apk add git zsh bash neovim exa ripgrep fzf tzdata ncurses nodejs npm python3 py3-pip curl
3+
RUN apk update && apk add git zsh bash neovim exa ripgrep fzf tzdata ncurses nodejs npm python3 py3-pip curl tree-sitter-cli
44
RUN addgroup demo \
55
&& adduser --system --shell /bin/zsh -g demo demo \
66
&& cp /usr/share/zoneinfo/UTC /etc/localtime

install.zsh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ if [ "$(uname -s)" = "Darwin" ] && which brew >/dev/null 2>&1; then
6868
brew install --quiet $(cat homebrew.txt)
6969
fi
7070

71-
if which npm >/dev/null 2>&1; then
72-
echo "◉ Installing global npm packages..."
73-
npm install --global --silent tree-sitter-cli
74-
fi
75-
7671
echo "→ Cleaning up dead symlinks..."
7772
find "$HOME" -maxdepth 1 -type l ! -exec test -e {} \; -delete
7873
[ -d "$bindir" ] && find "$bindir" -maxdepth 1 -type l ! -exec test -e {} \; -delete

0 commit comments

Comments
 (0)