diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8cebf03 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:dubnium + +WORKDIR /nest-server + +COPY . . + +RUN yarn install +RUN yarn build + + +CMD ["yarn", "serve"]