From b028a44dc7acb74b5dd1fc7b9d908d5729e9bc5b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Apr 2026 22:03:52 +0200 Subject: [PATCH] fix(docker): build with whatsapp_native tag and publish picoclaw-whatsapp image Switch Dockerfile default build target to build-whatsapp-native-docker so the image is compiled with -tags whatsapp_native. Also publish the picoclaw-whatsapp tag alongside sushi30 and sha-* in the CI workflow. Closes #37 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/sushi30-docker.yml | 1 + docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sushi30-docker.yml b/.github/workflows/sushi30-docker.yml index 887d22f48..6dfa0401e 100644 --- a/.github/workflows/sushi30-docker.yml +++ b/.github/workflows/sushi30-docker.yml @@ -43,6 +43,7 @@ jobs: push: true tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sushi30 + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:picoclaw-whatsapp ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sha-${{ steps.sha.outputs.short }} cache-from: type=gha cache-to: type=gha,mode=max diff --git a/docker/Dockerfile b/docker/Dockerfile index 41cc69348..d4edba742 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,7 +13,7 @@ RUN go mod download # Copy source and build COPY . . -ARG BUILD_TARGET=build +ARG BUILD_TARGET=build-whatsapp-native-docker RUN make ${BUILD_TARGET} # ============================================================