FROM node:latest WORKDIR /app COPY ./server/package*.json ./ RUN npm install COPY . . EXPOSE 3000 WORKDIR /app/server CMD ["npm", "start"]