FROM node:24-alpine WORKDIR /app COPY package*.json ./ RUN npm install # Start development server with hot reload CMD ["npm", "start"]