Tonnes of updates to the site documentation and general processes

This commit is contained in:
2025-06-30 15:49:39 -06:00
parent 438e9678d1
commit d607d3a4b2
93 changed files with 14823 additions and 6347 deletions

View File

@@ -2,6 +2,13 @@ FROM codercom/code-server:latest
USER root
# Install Node.js 18+ and npm
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs
# Install Claude Code globally as root
RUN npm install -g @anthropic-ai/claude-code
# Install Python and dependencies
RUN apt-get update && apt-get install -y \
python3 \
@@ -81,4 +88,4 @@ RUN mkdir -p /home/coder/.local/bin \
&& echo '#!/bin/bash\ncd /home/coder/mkdocs\nmkdocs "$@"' > /home/coder/.local/bin/run-mkdocs \
&& chmod +x /home/coder/.local/bin/run-mkdocs
WORKDIR /home/coder
WORKDIR /home/coder