Spaces:
Paused
Paused
File size: 305 Bytes
2de327a 86e99f6 2de327a a257a65 86e99f6 2de327a 86e99f6 2de327a 86e99f6 2de327a 86e99f6 2de327a 86e99f6 2de327a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Use latest Node.js (official)
FROM node:latest
# Set working directory
WORKDIR /
# Copy package files first (for caching)
COPY package*.json ./
# Install dependencies
RUN npm install --production
# Copy rest of the app
COPY . .
# Expose port
EXPOSE 8501
# Start app
ENTRYPOINT ["node", "index.js"] |