mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-21 01:56:47 +00:00
Reworked the devcontainer to bring in more tools and up to standards
This commit is contained in:
parent
bb1ea9dcf3
commit
c405d8ca5f
3 changed files with 46 additions and 6 deletions
17
.devcontainer/Dockerfile
Normal file
17
.devcontainer/Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue