dev-env/Dockerfile
raphy d713103d33
All checks were successful
ci / checkout (push) Successful in 2m11s
slim image down
2025-02-01 00:33:47 +01:00

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"]