mirror of
https://github.com/coleam00/Archon
synced 2026-04-21 21:47:53 +00:00
- Update Dockerfile.user.example image refs (dynamous → coleam00/archon) - Update docker-compose.yml image name (remote-coding-agent → archon) - Fix clone URL and dir name in Book of Archon first-five-minutes - Update prompt-builder example project name - Add elevator pitch to README intro - Fix all README doc links to point to archon.diy (old docs/ dir was deleted) - Add install scripts to docs-web public dir for GitHub Pages serving Relates to #980 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# User-extensible Dockerfile for Archon (server / deploy).
|
|
# Copy this file to Dockerfile.user — do NOT modify Dockerfile.user.example.
|
|
# Dockerfile.user is gitignored so your customizations stay local.
|
|
#
|
|
# This file extends the published GHCR image — no local build step needed.
|
|
# The image is pulled automatically when you run docker compose up -d.
|
|
|
|
FROM ghcr.io/coleam00/archon:latest
|
|
|
|
# Install additional system packages
|
|
USER root
|
|
|
|
# --- Uncomment and extend as needed ---
|
|
|
|
# Example: install extra apt packages
|
|
# RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
# ripgrep \
|
|
# fd-find \
|
|
# jq \
|
|
# && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Example: install GitHub CLI extensions
|
|
# RUN gh extension install github/gh-copilot
|
|
|
|
# Example: install global npm packages
|
|
# RUN npm install -g tsx prettier
|
|
|
|
# Example: copy a custom binary into PATH
|
|
# COPY --chown=appuser:appuser ./my-tool /usr/local/bin/my-tool
|
|
|
|
# Example: install Python packages
|
|
# RUN pip install --no-cache-dir httpie
|
|
|
|
USER appuser
|