This commit is contained in:
2023-03-19 11:26:55 +07:00
parent 956fb6cb62
commit 2921d8f0bc
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
node_modules
+9
View File
@@ -0,0 +1,9 @@
FROM node:18 as build
WORKDIR /home/node/app
COPY . .
RUN apt-get update -y
RUN yarn
CMD ["node", "index.js"]