Spaces:
Running
Running
File size: 397 Bytes
32addc2 29c2130 8545d49 32addc2 29c2130 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Build stage
FROM node:20-slim AS builder
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy project files
COPY . .
# Build the app
RUN npm run build
# Install serve
RUN npm install -g serve
# Expose port 7860 (default for Hugging Face Spaces)
EXPOSE 7860
# Start server
CMD ["serve", "-s", "dist", "-l", "7860"] |