mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-22 18:46:47 +00:00
17 lines
362 B
Docker
17 lines
362 B
Docker
# 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
|