diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0ee6dac --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +# FROM node:8.10-alpine +FROM node:12 +WORKDIR /usr/src/app +COPY package.json ./ +# RUN apt install git python3 +RUN npm install --only=production +RUN npm i react@16.14.0 +RUN npm audit fix +COPY . . +CMD [ "npm", "start" ] \ No newline at end of file