Spaces:
Running
Running
File size: 291 Bytes
2663d4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Use Node.js 18
FROM node:18
# Set working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package.json ./
RUN npm install
# Copy the rest of the app code
COPY . .
# Expose the port Hugging Face expects
EXPOSE 7860
# Start the server
CMD ["node", "server.js"] |