From 437d110e373bc831fff4c49441738177a09db8a5 Mon Sep 17 00:00:00 2001 From: Stijnus <72551117+Stijnus@users.noreply.github.com> Date: Tue, 16 Sep 2025 12:01:02 +0200 Subject: [PATCH] fix: update Docker workflow target to match new Dockerfile structure (#2000) - Change target from bolt-ai-production to runtime - Matches the actual stage name in the current Dockerfile - Prevents Docker build failures in production deployments - Fixes target stage 'bolt-ai-production' could not be found error --- .github/workflows/docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 32ea67e..0fa38ee 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -57,7 +57,7 @@ jobs: with: context: . platforms: linux/amd64,linux/arm64 - target: bolt-ai-production + target: runtime push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}