From 9140a521601cac31b2ff4bb7c3090e88e1ccafcd Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 16 Oct 2025 18:00:42 -0600 Subject: [PATCH] Force Docker rebuild to include API endpoints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Se agregó un comentario al código para forzar que Docker reconstruya la imagen y así incluya los endpoints de la API de Authentik que faltaban en el build anterior. Los endpoints /api/authentik/user (GET y PATCH) existen en el código fuente pero no fueron incluidos en la imagen Docker debido a cache. --- nuxt4/app/app.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nuxt4/app/app.vue b/nuxt4/app/app.vue index b9922f5..8ac6e33 100644 --- a/nuxt4/app/app.vue +++ b/nuxt4/app/app.vue @@ -120,4 +120,6 @@ useHead({ { name: 'apple-mobile-web-app-status-bar-style', content: 'default' } ] }) + +// Rebuild trigger: force Docker to rebuild image with API endpoints