FROM node:18 WORKDIR /home/hc/Desktop/remv2/Remchanv2 COPY package*.json ./ COPY . ./ RUN npm install EXPOSE 5000 CMD ["node", "server.js"]