The lint stage in the Dockerfile (added in PR #152) is never referenced by a later stage via COPY --from=lint, so BuildKit silently skips it during docker build .. Linting is not actually running in CI.
Fix: Add COPY --from=lint /src/go.sum /dev/null to the builder stage to create a stage dependency. This forces the lint stage to complete before the build proceeds.
The lint stage in the Dockerfile (added in PR #152) is never referenced by a later stage via `COPY --from=lint`, so BuildKit silently skips it during `docker build .`. Linting is not actually running in CI.
Fix: Add `COPY --from=lint /src/go.sum /dev/null` to the `builder` stage to create a stage dependency. This forces the lint stage to complete before the build proceeds.
Ref: [sdlc-manager #6](https://git.eeqj.de/clawbot/sdlc-manager/issues/6)
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The lint stage in the Dockerfile (added in PR #152) is never referenced by a later stage via
COPY --from=lint, so BuildKit silently skips it duringdocker build .. Linting is not actually running in CI.Fix: Add
COPY --from=lint /src/go.sum /dev/nullto thebuilderstage to create a stage dependency. This forces the lint stage to complete before the build proceeds.Ref: sdlc-manager #6