dev-env/Dockerfile

25 lines
348 B
Text
Raw Normal View History

2025-01-31 01:11:31 +01:00
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 \
2025-02-01 00:33:47 +01:00
zig \
zls
2025-01-31 01:11:31 +01:00
# Set the entrypoint to fish
ENTRYPOINT ["fish"]