dev-env/Dockerfile
raphy cc80f81200
All checks were successful
ci / checkout (push) Successful in 4m27s
remove clang
2025-02-01 00:18:24 +01:00

33 lines
463 B
Docker

FROM alpine:edge
# Install base dependencies and build tools
RUN apk add --no-cache \
fish \
direnv \
direnv-fish \
helix \
ripgrep \
fd \
dust \
btop \
tmux \
tar \
zstd \
jq \
tcpdump \
git
# rust
RUN apk add --no-cache \
rust \
rust-analyzer \
cargo \
rust-clippy
# zig (actually doubles as a c/c++)
RUN apk add --no-cache \
zig
# Set the entrypoint to fish
ENTRYPOINT ["fish"]