From 943b884fb310a7ccee7763d3eb101c07f39c6934 Mon Sep 17 00:00:00 2001 From: leehk Date: Fri, 11 Apr 2025 13:28:59 +0800 Subject: [PATCH] update --- .github/workflows/develop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 2bea198..47702e1 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -30,14 +30,14 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Pull image run: | - docker pull ${{ env.IMAGE }}:latest --platform linux/amd64 || true + docker pull ${{ env.IMAGE }}:latest || true - name: Build image run: | docker build \ --cache-from ${{ env.IMAGE }}:latest \ --tag ${{ env.IMAGE }}:latest \ - --file ./app/backend/Dockerfile.prod \ - "./app/backend" + --file ./backend/Dockerfile.prod \ + "./backend" - name: Push image run: | docker push ${{ env.IMAGE }}:latest