From 1cb1549c2177aaa8fa7bc8d1b9797313077954e1 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Fri, 21 Nov 2025 21:30:28 -0600 Subject: [PATCH] Force complete rebuild: invalidate Docker cache after removing @nuxt/content --- nuxt4/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nuxt4/Dockerfile b/nuxt4/Dockerfile index 3f9e972..2e89430 100644 --- a/nuxt4/Dockerfile +++ b/nuxt4/Dockerfile @@ -1,4 +1,5 @@ # Multi-stage build for Nuxt 4 application +# Cache bust: 2025-11-21-fix-components FROM node:20-alpine AS builder WORKDIR /app @@ -6,7 +7,7 @@ WORKDIR /app # Copy package files COPY package*.json ./ -# Install dependencies +# Install dependencies (removed @nuxt/content) RUN npm ci # Copy source code