Dockerfile 107 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 FROM node:12.16.2 RUN mkdir /app WORKDIR /app COPY package*.json ./ RUN npm install CMD ["npm", "start"]