Fix node version

This commit is contained in:
Sidharth Vinod
2023-07-27 14:46:13 +05:30
parent 49bf28b1a2
commit 62a5012efd
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
FROM node:20
FROM node:18.17.0
WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN npm install
COPY . .
RUN ls
CMD ["yarn", "dev"]
CMD ["yarn", "dev"]