Initial commit

This commit is contained in:
R.J. 2025-01-31 01:11:31 +01:00
commit f4b53351ab
No known key found for this signature in database
GPG key ID: D85876B31F4275CF

35
Dockerfile Normal file
View file

@ -0,0 +1,35 @@
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
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"]