# Development Dockerfile FROM node:24-alpine # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install all dependencies (including dev dependencies) RUN npm install # Copy application source COPY . . # Expose port 3000 EXPOSE 3000 # Start the development server CMD ["npm", "start"]