From 8b9c55a83b406a9e22530b5ecd0a2ef1dd0a7973 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 13:12:53 +0000 Subject: [PATCH] Bump node from 18-alpine to 24-alpine Bumps node from 18-alpine to 24-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 24-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..ce7be25 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:24-alpine AS tailwind-builder WORKDIR /app