From 0faf6ddbbfde2c4b1cfa075645555ecd04279fb4 Mon Sep 17 00:00:00 2001 From: rennerdo30 <9086097+rennerdo30@users.noreply.github.com> Date: Sat, 5 Sep 2026 15:12:18 +0900 Subject: [PATCH] ci: point the image builds at the real Dockerfile locations The `Docker Build` job referenced `deploy/compose/Dockerfile.kernel` and `deploy/compose/Dockerfile.worker`, but both files live in `deploy/docker/` - the path `deploy/compose/docker-compose.yml` already uses. The job therefore failed immediately: ERROR: failed to build: failed to solve: failed to read dockerfile: open Dockerfile.kernel: no such file or directory It went unnoticed because the job only runs on pushes to main and needs `backend-build` and `frontend-quality` first, so it was skipped for as long as those were red. Both images were built locally from these paths to confirm they succeed. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57a58d3..cec943c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,7 +146,7 @@ jobs: uses: docker/build-push-action@v7 with: context: . - file: deploy/compose/Dockerfile.kernel + file: deploy/docker/Dockerfile.kernel push: false tags: webencode/kernel:latest cache-from: type=gha @@ -155,7 +155,7 @@ jobs: uses: docker/build-push-action@v7 with: context: . - file: deploy/compose/Dockerfile.worker + file: deploy/docker/Dockerfile.worker push: false tags: webencode/worker:latest cache-from: type=gha