From 705fb58555d3e331e584709e22e51788146890dd Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 16 Oct 2025 18:19:00 -0600 Subject: [PATCH] Fix: Agregar --no-cache al docker build para incluir API endpoints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Se agregó la flag --no-cache al comando docker build para forzar una reconstrucción completa de la imagen Docker sin usar cache. Esto asegura que los endpoints de la API de Authentik (/api/authentik/user GET y PATCH) se incluyan correctamente en la imagen compilada. --- .gitea/workflows/build-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index 51b4dea..b08d78d 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -23,7 +23,7 @@ jobs: - name: Build+push ${{ vars.APP_NAME }} run: | cd nuxt4 - docker build -t $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }} -t $REG/${{ github.repository_owner }}/$APP_NAME:latest . + docker build --no-cache -t $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }} -t $REG/${{ github.repository_owner }}/$APP_NAME:latest . docker push $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }} docker push $REG/${{ github.repository_owner }}/$APP_NAME:latest