e6934b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm install COPY . . # Build frontend + transpile backend RUN npm install # Required port for Hugging Face EXPOSE 7860 # Run backend server CMD ["npm", "start"]