Files
claude-hub/.github/workflows/docker-publish.yml
Jonathan bda604bfdc fix: address PR review feedback
- Implement self-hosted runner fallback via USE_SELF_HOSTED repository variable
- Add runner information logging for debugging
- Add timeout protection (30 minutes) to prevent hanging
- Update documentation to match actual implementation
- Fix npm permission context switching in Dockerfile
- Consolidate directory creation to minimize user context switches
2025-05-29 14:30:52 -05:00

178 lines
6.2 KiB
YAML

name: Docker Build and Publish
on:
push:
branches:
- main
- master
tags:
- 'v*.*.*'
pull_request:
branches:
- main
- master
env:
DOCKER_HUB_USERNAME: ${{ vars.DOCKER_HUB_USERNAME || 'cheffromspace' }}
DOCKER_HUB_ORGANIZATION: ${{ vars.DOCKER_HUB_ORGANIZATION || 'intelligenceassist' }}
IMAGE_NAME: ${{ vars.DOCKER_IMAGE_NAME || 'claude-hub' }}
# Runner configuration - set USE_SELF_HOSTED to 'false' to force GitHub-hosted runners
USE_SELF_HOSTED: ${{ vars.USE_SELF_HOSTED || 'true' }}
jobs:
build:
# Use self-hosted runners by default, with ability to override via repository variable
runs-on: ${{ fromJSON(format('["{0}"]', (vars.USE_SELF_HOSTED == 'false' && 'ubuntu-latest' || 'self-hosted, linux, x64, docker'))) }}
timeout-minutes: 30
permissions:
contents: read
packages: write
security-events: write
steps:
- name: Runner Information
run: |
echo "Running on: ${{ runner.name }}"
echo "Runner OS: ${{ runner.os }}"
echo "Runner labels: ${{ join(runner.labels, ', ') }}"
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ env.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_HUB_ORGANIZATION }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=raw,value=nightly,enable=${{ github.ref == 'refs/heads/main' }}
# Build and test in container for PRs
- name: Build and test Docker image (PR)
if: github.event_name == 'pull_request'
run: |
# Build the test stage
docker build --target test -t ${{ env.IMAGE_NAME }}:test-${{ github.sha }} -f Dockerfile .
# Run tests in container
docker run --rm \
-e CI=true \
-e NODE_ENV=test \
-v ${{ github.workspace }}/coverage:/app/coverage \
${{ env.IMAGE_NAME }}:test-${{ github.sha }} \
npm test
# Build production image for smoke test
docker build --target production -t ${{ env.IMAGE_NAME }}:pr-${{ github.event.number }} -f Dockerfile .
# Smoke test
docker run --rm ${{ env.IMAGE_NAME }}:pr-${{ github.event.number }} \
test -f /app/scripts/runtime/startup.sh && echo "✓ Startup script exists"
# Build and push for main branch
- name: Build and push Docker image
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: production
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Update Docker Hub Description
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ env.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: ${{ env.DOCKER_HUB_ORGANIZATION }}/${{ env.IMAGE_NAME }}
readme-filepath: ./README.dockerhub.md
short-description: ${{ github.event.repository.description }}
# Build claudecode separately
build-claudecode:
runs-on: ${{ fromJSON(format('["{0}"]', (vars.USE_SELF_HOSTED == 'false' && 'ubuntu-latest' || 'self-hosted, linux, x64, docker'))) }}
if: github.event_name != 'pull_request'
timeout-minutes: 30
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Extract metadata for claudecode
id: meta-claudecode
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_HUB_ORGANIZATION }}/claudecode
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=raw,value=nightly,enable=${{ github.ref == 'refs/heads/main' }}
- name: Build and push Claude Code Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.claudecode
platforms: linux/amd64
push: true
tags: ${{ steps.meta-claudecode.outputs.tags }}
labels: ${{ steps.meta-claudecode.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
# Fallback job if self-hosted runners timeout
build-fallback:
needs: [build, build-claudecode]
if: |
always() &&
(needs.build.result == 'failure' || needs.build-claudecode.result == 'failure') &&
vars.USE_SELF_HOSTED != 'false'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
security-events: write
steps:
- name: Trigger rebuild on GitHub-hosted runners
run: |
echo "Self-hosted runner build failed. To retry with GitHub-hosted runners:"
echo "1. Set the repository variable USE_SELF_HOSTED to 'false'"
echo "2. Re-run this workflow"
echo ""
echo "Or manually trigger a new workflow run with GitHub-hosted runners."
exit 1