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