diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..831ad59 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:lts-alpine +WORKDIR /app +COPY package*.json ./ +RUN yarn install +COPY . . +CMD ["yarn", "run"] \ No newline at end of file