diff --git a/Dockerfile b/Dockerfile index 8b13789..1808c56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,5 @@ - +FROM node:14.10.1 +COPY ["package.json", "yarn.lock", "./"] +RUN yarn install +COPY .. +CMD ["yarn","start"]