23 lines
312 B
Docker
23 lines
312 B
Docker
FROM alpine:edge
|
|
|
|
# Install base dependencies and build tools
|
|
RUN apk add --no-cache \
|
|
fish \
|
|
helix \
|
|
ripgrep \
|
|
fd \
|
|
dust \
|
|
btop \
|
|
tmux \
|
|
tar \
|
|
zstd \
|
|
jq \
|
|
tcpdump \
|
|
lazygit \
|
|
jj \
|
|
most \
|
|
k9s \
|
|
git
|
|
|
|
# Set the entrypoint to fish
|
|
ENTRYPOINT ["fish"]
|