From e267e58412bc08918ef95f776bb176be2a5e9d7c Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 28 Sep 2025 03:35:24 +0300 Subject: [PATCH] Fix Dockerfile syntax by adding missing 'node:' prefix to the base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79c938e..07f0537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Modern Dockerfile for Vite + React application # Build stage -FROM 24.9-alpine3.21 AS builder +FROM node:24.9-alpine3.21 AS builder WORKDIR /app