From ff914addae11739c39f45bb66df70a3f3fbd2661 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:09:57 +0000 Subject: [PATCH] Bump node from 18-alpine to 23-alpine Bumps node from 18-alpine to 23-alpine. --- updated-dependencies: - dependency-name: node 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 f910a58..e758fd7 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:23-alpine AS tailwind-builder WORKDIR /app