improve greeting message and list packages

This commit is contained in:
Wintermute 2025-02-02 23:04:07 +01:00
parent 4da65198a7
commit 3cc98a9783
2 changed files with 25 additions and 11 deletions

View file

@ -3,25 +3,23 @@ FROM alpine:edge
# Install base dependencies and build tools
RUN apk add --no-cache \
fish \
helix \
ripgrep \
fd \
dust \
btop \
tmux \
tcpdump \
dust \
fd \
ripgrep \
fish \
zellij \
helix \
curl \
wget \
tar \
zstd \
jq \
tcpdump \
lazygit \
most \
k9s \
curl \
git
COPY setup_langs /root/setup_langs
COPY .config /root/.config
RUN apk add --no-cache cargo bash; \
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash; \
@ -29,6 +27,9 @@ RUN apk add --no-cache cargo bash; \
cargo binstall lazyjj; \
apk del cargo bash;
COPY setup_langs /root/setup_langs
COPY .config /root/.config
ENV TERM="xterm-256color"
ENV COLORTERM="truecolor"