From 5db697af21f8ed228abc1539104825374067b092 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:09:38 +0000 Subject: [PATCH] Bump node from 18-alpine to 25-alpine Bumps node from 18-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 648dde8..a06e3b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN npx tailwindcss -i ./src/input.css -o ./dist/tailwind.css CMD ["python", "app.py"] # Use multi-stage builds to reduce the final image size # Stage 1: Build Tailwind CSS using a Node.js image -FROM node:18-alpine AS tailwind-builder +FROM node:25-alpine AS tailwind-builder WORKDIR /app