Spaces:
Sleeping
Sleeping
File size: 314 Bytes
05cf987 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Use the official Node.js image
FROM node:18
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port 7860 (Standard for Hugging Face Spaces)
EXPOSE 7860
# Start the application
CMD ["node", "server.js"] |