Spaces:
Running
Running
File size: 287 Bytes
8cc19f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install --production
# Copy source code
COPY . .
# Expose port (Hugging Face Spaces dùng port 7860)
EXPOSE 7860
# Start server
CMD ["node", "server.js"]
|