# Dockerfile for the backend FROM node:16 WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 5000 CMD ["node", "server.js"]