sdy

add Dockerfile in front folder

1 +FROM node:12.16.2
2 +
3 +RUN mkdir /app
4 +WORKDIR /app
5 +RUN npx create-react-app .
6 +
7 +COPY package*.json ./
8 +RUN npm install
9 +
10 +CMD ["npm", "start"]
...\ No newline at end of file ...\ No newline at end of file