From fea3b0401249e619592aea7d13413b82575cd380 Mon Sep 17 00:00:00 2001 From: Jonathan Flatt Date: Wed, 21 May 2025 05:05:58 +0000 Subject: [PATCH] fix: Docker CI test configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add load: true to Docker build steps to make images available locally - Fix port mapping from 3003:3003 to 3003:3002 to match container EXPOSE - Ensures Docker images are properly loaded for testing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 153c6f6..aa8c4a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,6 +118,7 @@ jobs: context: . file: ./Dockerfile push: false + load: true tags: claude-github-webhook:test cache-from: type=gha cache-to: type=gha,mode=max @@ -128,6 +129,7 @@ jobs: context: . file: ./Dockerfile.claudecode push: false + load: true tags: claude-code-runner:test cache-from: type=gha cache-to: type=gha,mode=max @@ -135,7 +137,7 @@ jobs: - name: Test Docker containers run: | # Test main container starts correctly - docker run --name test-webhook -d -p 3003:3003 \ + docker run --name test-webhook -d -p 3003:3002 \ -e NODE_ENV=test \ -e BOT_USERNAME=@TestBot \ -e GITHUB_WEBHOOK_SECRET=test-secret \