FROM node:22-alpine WORKDIR /app COPY package*.json ./ RUN npm install --production COPY . . EXPOSE 8000 # Start the application CMD ["npm", "start"]