diff --git a/.github/workflows/on_push_deploy_to_staging.yaml b/.github/workflows/on_push_deploy_to_staging.yaml index 876b5cab1..20496f2d9 100644 --- a/.github/workflows/on_push_deploy_to_staging.yaml +++ b/.github/workflows/on_push_deploy_to_staging.yaml @@ -42,7 +42,7 @@ jobs: - name: Build and tag Docker image run: | # Build the Docker image - docker build -t ${{ secrets.STAGING_ECR_URI }}:$IMAGE_TAG . + docker build --no-cache -t ${{ secrets.STAGING_ECR_URI }}:$IMAGE_TAG . # Tag the image as 'latest' docker tag ${{ secrets.STAGING_ECR_URI }}:$IMAGE_TAG ${{ secrets.STAGING_ECR_URI }}:latest