File size: 345 Bytes
3c8ff75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Use Node.js LTS
FROM node:18-bullseye-slim
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port (Hugging Face defaut is 7860)
EXPOSE 7860
# Define environment variables
ENV PORT=7860
# Start the application
CMD ["npm", "start"]
|