From 8949a364549aabcbf7961a6d1f50c29d361724e3 Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Mon, 9 Mar 2026 20:39:51 -0500 Subject: [PATCH] fix: bump Node to 20 in frontend Dockerfile for Vite 7 compatibility Co-Authored-By: Claude Opus 4.6 --- infrastructure/docker/Dockerfile.frontend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/docker/Dockerfile.frontend b/infrastructure/docker/Dockerfile.frontend index 34330b7..44ea899 100644 --- a/infrastructure/docker/Dockerfile.frontend +++ b/infrastructure/docker/Dockerfile.frontend @@ -1,6 +1,6 @@ # Multi-stage build for TOD Frontend # Stage 1: build — Node.js build environment -FROM node:18-alpine AS builder +FROM node:20-alpine AS builder # Cap Node.js heap to 512 MB so tsc + vite build don't OOM a low-RAM server. # Vite's bundler defaults to using all available heap; on a 2-4 GB machine that