FROM node:20-alpine WORKDIR /backendV2 COPY package*.json ./ RUN npm install COPY . . EXPOSE 8004 CMD ["npm", "start"]