FROM node:14 WORKDIR /app/cdn-app-insider COPY package*.json ./ RUN npm install COPY . . EXPOSE 5053 CMD [ "npm", "run", "start" ]