FROM node:14 WORKDIR /app/cdn-app-insider COPY package*.json ./ RUN npm install COPY . . RUN [ ! -f cdn-files ] && touch cdn-files || true RUN [ ! -f report ] && touch report || true EXPOSE 5053 CMD [ "npm", "start" ]