mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-15 16:19:12 +00:00
* feat(docker): parameterize Dockerfile.integrated with ARG FLAVOR=minimal|full Add FLAVOR build arg that gates the AI CLI install layer (claude-code, gemini-cli, grok-cli, opencode) so one Dockerfile produces both the minimal (< 350 MB) and full (< 600 MB) integrated images. Use BuildKit cache mount for /root/.npm to speed up repeated builds. Part of #1251 (P1 — publish integrated images). * feat(docker): emit startup deprecation warning in legacy ccs-dashboard entrypoint Prepend a [WARN] line to stderr on every container start so operators running ghcr.io/kaitranntt/ccs-dashboard:latest are notified to migrate to ghcr.io/kaitranntt/ccs:latest. Sunset window: 2 releases. See #1251. * test(docker): add image-size.sh budget assertion + unit test suite image-size.sh: asserts docker image inspect .Size against a byte budget. Usage: image-size.sh <image:tag> <max-bytes> Budgets: minimal=350 MB (367001600), full=600 MB (629145600) image-size-logic.test.sh: 6 mock-docker unit tests covering pass/fail boundaries, bad arg count, and non-integer input. All 6 pass locally. Part of #1251 (P1). * ci(docker): extend docker-release.yml to publish ccs:latest and ccs:full - Add publish-integrated job with matrix flavor: [minimal, full] - minimal -> ghcr.io/kaitranntt/ccs:<ver> + :latest (when promoted) - full -> ghcr.io/kaitranntt/ccs:full-<ver> + :full (when promoted) - Multi-arch: linux/amd64 + linux/arm64 via buildx - Scoped GHA cache per flavor to avoid cross-contamination - Add promote_to_latest workflow_dispatch input (default false) - rc.1 soak: first publish only pushes immutable version tag - Mutable :latest/:full promoted only on release event OR explicit opt-in - Add smoke-test job (post-publish) for each flavor - Pulls the just-published version tag - Asserts image size via tests/docker/image-size.sh - Boots container, waits for healthcheck, probes :3000 and :8317 - Keep publish-dashboard job unchanged (legacy 2-release sunset) - Updated labels to note deprecation status All jobs run on self-hosted cliproxy runners. Part of #1251 (P1). * docs(docker): document new image tags, add ccs-dashboard deprecation notices docker/README.md: - Add "Choosing an image" table (ccs:latest / ccs:full / ccs-dashboard deprecated) - Update Quick Start section to use ccs:latest as primary example - Add legacy image note with sunset timeline CHANGELOG.md: - Add Unreleased > ### Deprecated entry for ccs-dashboard:latest pointing to migration path and #1251 README.md: - Add one-line deprecation banner near top routing users to ccs:latest Part of #1251 (P1).
37 lines
1012 B
Bash
37 lines
1012 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "[WARN] ghcr.io/kaitranntt/ccs-dashboard is deprecated. Migrate to ghcr.io/kaitranntt/ccs:latest. See https://github.com/kaitranntt/ccs/issues/1251" >&2
|
|
|
|
ccs_home_dir="${CCS_HOME_DIR:-/home/node/.ccs}"
|
|
|
|
mkdir -p "$ccs_home_dir"
|
|
|
|
# Fix volume permissions if running as root
|
|
if [ "$(id -u)" = "0" ]; then
|
|
if ! chown -R node:node "$ccs_home_dir" 2>/dev/null; then
|
|
echo "[!] Warning: Could not change ownership of $ccs_home_dir (read-only volume?)" >&2
|
|
fi
|
|
fi
|
|
|
|
# Show usage if no command provided
|
|
if [ "$#" -eq 0 ]; then
|
|
echo "[X] No command provided" >&2
|
|
echo "" >&2
|
|
echo "Usage: docker run ccs-dashboard <command>" >&2
|
|
echo "" >&2
|
|
echo "Examples:" >&2
|
|
echo " docker run ccs-dashboard node dist/ccs.js config" >&2
|
|
echo " docker run ccs-dashboard ccs --help" >&2
|
|
echo "" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Drop privileges from root to node user
|
|
if [ "$(id -u)" = "0" ]; then
|
|
cmd="$(printf '%q ' "$@")"
|
|
exec su -s /bin/bash node -c "exec ${cmd}"
|
|
fi
|
|
|
|
exec "$@"
|