From f0908cdac1d9509b3605dd79d8c312bd448f70ba Mon Sep 17 00:00:00 2001 From: Mohsin Zaidi <2236875+smrz2001@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:58:16 -0400 Subject: [PATCH] fix(ci): use correct dockerfile (#2893) --- .github/workflows/docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 28672d2833..aee5253f43 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -1,4 +1,4 @@ -name: Build and push Docker image +name: Build custom Docker image on: workflow_dispatch: # manually triggered @@ -42,7 +42,7 @@ jobs: env: IMAGE_ID: "${{ steps.login-ecr-public.outputs.registry }}/r5b3e0r5/3box/js-ceramic" run: | - docker buildx build -o type=docker . --file Dockerfile \ + docker buildx build -o type=docker . --file Dockerfile.daemon --target composedb \ --tag $IMAGE_ID:${{ github.event.inputs.image_tag }} \ --tag $IMAGE_ID:${{ github.sha }} docker push --all-tags $IMAGE_ID