dev-env/Dockerfile
raphy 4accf9735e
Some checks failed
ci / checkout (push) Failing after 13m19s
add k9s
2025-01-31 18:01:05 +01:00

36 lines
508 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 \
k9s \
git
RUN apk add --no-cache \
clang
# 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"]