Fix Dockerfile syntax by adding missing 'node:' prefix to the base image

This commit is contained in:
Tudor Stanciu 2025-09-28 03:35:24 +03:00
parent d467172271
commit e267e58412

View File

@ -1,6 +1,6 @@
# Modern Dockerfile for Vite + React application # Modern Dockerfile for Vite + React application
# Build stage # Build stage
FROM 24.9-alpine3.21 AS builder FROM node:24.9-alpine3.21 AS builder
WORKDIR /app WORKDIR /app