From 680c6639c1ba2e102cf36fc73147b9273edc581d Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 10 Feb 2026 21:20:18 -0800 Subject: [PATCH] Restore docker buildx build now that runner has buildx plugin Runner v2.5.1 includes docker-buildx-plugin, so we can switch back to BuildKit. Co-Authored-By: Claude Opus 4.6 --- .forgejo/actions/build-push-image/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/actions/build-push-image/action.yaml b/.forgejo/actions/build-push-image/action.yaml index 93b2c11..4060b2e 100644 --- a/.forgejo/actions/build-push-image/action.yaml +++ b/.forgejo/actions/build-push-image/action.yaml @@ -30,7 +30,7 @@ runs: shell: bash run: | echo "Building ${{ inputs.image_name }}:${{ inputs.version }}" - docker build \ + docker buildx build \ --tag ${{ inputs.image_name }}:${{ inputs.version }} \ --file ${{ inputs.context }}/${{ inputs.dockerfile }} \ ${{ inputs.context }}