24 lines
348 B
Docker
24 lines
348 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 \
|
|
git
|
|
|
|
# zig (actually doubles as a c/c++)
|
|
RUN apk add --no-cache \
|
|
zig \
|
|
zls
|
|
|
|
# Set the entrypoint to fish
|
|
ENTRYPOINT ["fish"]
|