Add dockerfile

This commit is contained in:
Quentin ANIERE
2022-04-09 00:32:32 +02:00
parent caa060a500
commit 6b6d1bddec
3 changed files with 668 additions and 8 deletions

12
dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:16
WORKDIR /docker
COPY package.json ./
COPY yarn.lock ./
RUN yarn
COPY . .
CMD ["node", "index.js"]