diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..63a9eb0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# TODO +FROM node:12.13.0 as node +WORKDIR /app +COPY package.json /app/ +RUN npm install +COPY . . +EXPOSE 8070 +CMD [ "npm", "run", "start:dev" ]