From 6a1221024956abcc3f6b2cee02a8a732197bff7f Mon Sep 17 00:00:00 2001 From: Darrel Pol Date: Tue, 5 Nov 2024 22:21:01 -0600 Subject: [PATCH] adding no cache --- .github/workflows/on_tag_deploy_to_production.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on_tag_deploy_to_production.yaml b/.github/workflows/on_tag_deploy_to_production.yaml index 1fd4cd20e..b8192ae59 100644 --- a/.github/workflows/on_tag_deploy_to_production.yaml +++ b/.github/workflows/on_tag_deploy_to_production.yaml @@ -38,7 +38,7 @@ jobs: - name: Build and tag Docker image run: | # Build the Docker image - docker build -t ${{ secrets.PROD_ECR_URI }}:$IMAGE_TAG . + docker build --no-cache -t ${{ secrets.PROD_ECR_URI }}:$IMAGE_TAG . # Tag the image as 'latest' docker tag ${{ secrets.PROD_ECR_URI }}:$IMAGE_TAG ${{ secrets.PROD_ECR_URI }}:latest