FROM node:18 WORKDIR /panel-mgmt_app COPY package*.json ./ RUN npm install COPY . . EXPOSE 4001 CMD ["npm", "start"]