feat: add docker compose

This commit is contained in:
Sidharth Vinod
2021-09-25 12:35:37 +05:30
parent 15ad228b6e
commit a2084bbf42
7 changed files with 52 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:16
WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN npm install
COPY . .
RUN ls
CMD ["yarn", "dev"]