Upgrade system finished

This commit is contained in:
2026-03-22 21:47:09 -06:00
parent a71ba20176
commit bb1935027d
299 changed files with 8067 additions and 2758 deletions

View File

@@ -2,17 +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 Node.js (for npm/claude-code — code-server bundles its own node but doesn't expose it)
RUN apt-get update && apt-get install -y nodejs npm --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Install Claude Code globally as root
# Install Claude Code globally
RUN npm install -g @anthropic-ai/claude-code
# Install Ollama (needs zstd for extraction)
RUN apt-get update && apt-get install -y zstd && rm -rf /var/lib/apt/lists/* \
&& curl -fsSL https://ollama.com/install.sh | sh
# Install Python and dependencies
RUN apt-get update && apt-get install -y \
python3 \