From d8f384d44ad739f43e966c25e1cceafd3d24da9f Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:41:53 -0800 Subject: [PATCH] Bust Docker cache to fetch updated tinypdf-plus with dist --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 3b49d23..ecc2c44 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -10,8 +10,8 @@ COPY package*.json ./ # Copy prisma directory if it exists, otherwise we'll handle it COPY prisma ./prisma/ -# Install dependencies -RUN npm install +# Install dependencies (CACHE BUST: 2025-01-08) +RUN npm install && echo "Cache bust: tinypdf-plus updated with dist" # Copy source COPY . .