forked from claude-did-this/claude-hub
## Optimizations Implemented ### 🐳 Dockerfile Optimization - Replace double `npm ci` with `npm prune --omit=dev` for efficiency - Reduces build time and eliminates redundant package installation ### 🔧 TypeScript Configuration - Add `noErrorTruncation: true` to tsconfig for better error visibility - Improves debugging experience with full error messages ### 🧪 Jest Configuration Enhancement - Add @jest/globals package for modern Jest imports - Document preferred import pattern for TypeScript tests: `import { describe, it, expect } from '@jest/globals'` ### 📁 Build Artifacts Management - Add `dist/` and `*.tsbuildinfo` to .gitignore - Remove tracked build artifacts from repository - Ensure clean separation of source and compiled code ## Verification ✅ TypeScript compilation works correctly ✅ Type checking functions properly ✅ ESLint passes with all configurations ✅ All 67 tests pass (2 skipped) ✅ Build artifacts properly excluded from git These enhancements improve developer experience, build efficiency, and repository cleanliness while maintaining full backward compatibility. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
78 lines
2.6 KiB
Docker
78 lines
2.6 KiB
Docker
FROM node:24-slim
|
|
|
|
# Set shell with pipefail option for better error handling
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Install git, Claude Code, Docker, and required dependencies with pinned versions and --no-install-recommends
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
git=1:2.39.5-0+deb12u2 \
|
|
curl=7.88.1-10+deb12u12 \
|
|
python3=3.11.2-1+b1 \
|
|
python3-pip=23.0.1+dfsg-1 \
|
|
python3-venv=3.11.2-1+b1 \
|
|
expect=5.45.4-2+b1 \
|
|
ca-certificates=20230311 \
|
|
gnupg=2.2.40-1.1 \
|
|
lsb-release=12.0-1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Docker CLI (not the daemon, just the client) with consolidated RUN and pinned versions
|
|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \
|
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends docker-ce-cli=5:27.* \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Claude Code (latest version)
|
|
# hadolint ignore=DL3016
|
|
RUN npm install -g @anthropic-ai/claude-code
|
|
|
|
# Create docker group first, then create a non-root user for running the application
|
|
RUN groupadd -g 999 docker 2>/dev/null || true \
|
|
&& useradd -m -u 1001 -s /bin/bash claudeuser \
|
|
&& usermod -aG docker claudeuser 2>/dev/null || true
|
|
|
|
# Create claude config directory and copy config
|
|
RUN mkdir -p /home/claudeuser/.config/claude
|
|
COPY claude-config.json /home/claudeuser/.config/claude/config.json
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files and install dependencies
|
|
COPY package*.json ./
|
|
COPY tsconfig.json ./
|
|
COPY babel.config.js ./
|
|
|
|
# Install all dependencies (including dev for build)
|
|
RUN npm ci
|
|
|
|
# Copy source code
|
|
COPY src/ ./src/
|
|
|
|
# Build TypeScript
|
|
RUN npm run build
|
|
|
|
# Remove dev dependencies to reduce image size
|
|
RUN npm prune --omit=dev && npm cache clean --force
|
|
|
|
# Copy remaining application files
|
|
COPY . .
|
|
|
|
# Consolidate permission changes into a single RUN instruction
|
|
RUN chown -R claudeuser:claudeuser /home/claudeuser/.config /app \
|
|
&& chmod +x /app/scripts/runtime/startup.sh
|
|
|
|
# Note: Docker socket will be mounted at runtime, no need to create it here
|
|
|
|
# Expose the port
|
|
EXPOSE 3002
|
|
|
|
# Set default environment variables
|
|
ENV NODE_ENV=production \
|
|
PORT=3002
|
|
|
|
# Stay as root user to run Docker commands
|
|
# (The container will need to run with Docker socket mounted)
|
|
|
|
# Run the startup script
|
|
CMD ["bash", "/app/scripts/runtime/startup.sh"] |