Spaces:
Sleeping
Sleeping
File size: 293 Bytes
a7a3116 1f1ed70 a7a3116 1f1ed70 a7a3116 1f1ed70 a7a3116 1f1ed70 a7a3116 1f1ed70 a7a3116 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM node:20-alpine
# Set the working directory inside the container
WORKDIR /app
# Copy package files first (better for Docker caching)
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of your code (server.js, etc.)
COPY . .
# Run the app
CMD ["npm", "start"] |