34 lines
401 B
Bash
Executable File
34 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Installing system dependencies via apk..."
|
|
apk add --no-cache \
|
|
build-base \
|
|
bash \
|
|
curl \
|
|
ca-certificates \
|
|
git \
|
|
git-delta \
|
|
htop \
|
|
i2c-tools \
|
|
luarocks \
|
|
man-pages \
|
|
neovim \
|
|
nushell \
|
|
netcat-openbsd \
|
|
ripgrep \
|
|
starship \
|
|
tig \
|
|
tree-sitter \
|
|
vim \
|
|
wget \
|
|
zoxide \
|
|
bat \
|
|
fd \
|
|
exa \
|
|
fish \
|
|
rustup \
|
|
musl-dev \
|
|
openssl-dev \
|
|
perl \
|
|
linux-headers
|