Use node 16

This commit is contained in:
Sidharth Vinod
2022-05-20 17:15:21 +05:30
parent 7e993990e0
commit 4b9da62f40
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
# Stop : press ctrl + c
# or
# docker stop mermaid-live-editor
FROM node:18.1.0 as mermaid-live-editor-builder
FROM node:16 as mermaid-live-editor-builder
COPY --chown=node:node . /home
WORKDIR /home
RUN yarn install
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:18
FROM node:16
WORKDIR /app
COPY package.json .
COPY yarn.lock .