Reworked the devcontainer to bring in more tools and up to standards

This commit is contained in:
Jimmy Royer 2024-12-24 14:52:42 -05:00
parent bb1ea9dcf3
commit c405d8ca5f
3 changed files with 46 additions and 6 deletions

17
.devcontainer/Dockerfile Normal file
View file

@ -0,0 +1,17 @@
# Use the official TypeScript Node.js image as a base
FROM mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm
# Install additional features
RUN apt-get update && apt-get install -y \
awscli \
curl \
exa \
jq \
fzf \
locate \
manpages \
ripgrep \
shellcheck \
&& rm -rf /var/lib/apt/lists/*
ENV SHELL /bin/zsh