From 7ebff12b332b795801e1aaae0a782201b1a1c6fb Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Sun, 8 Feb 2026 09:18:31 -0500 Subject: [PATCH] Use full node:22 image for frontend build stage Alpine was causing native dependency issues with sass. Co-Authored-By: Claude Opus 4.6 --- frontend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 421682b..8ea889b 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,9 +1,9 @@ -FROM node:22-alpine AS build +FROM node:22 AS build WORKDIR /app COPY package*.json ./ -RUN npm ci --ignore-scripts +RUN npm ci COPY . . -RUN NODE_OPTIONS="--max-old-space-size=1024" npm run build +RUN npm run build FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html