Deployment Bot commited on
Commit
819261f
·
1 Parent(s): 9fe20fc

Fix HF Space build: Update Node version from 18 to 20 for Vite 8 compatibility

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  # Stage 1: Build the frontend
2
- FROM node:18 AS frontend-builder
3
  WORKDIR /app/frontend
4
  COPY frontend/package*.json ./
5
  RUN npm install
 
1
  # Stage 1: Build the frontend
2
+ FROM node:20 AS frontend-builder
3
  WORKDIR /app/frontend
4
  COPY frontend/package*.json ./
5
  RUN npm install