mirror of
https://github.com/mermaid-js/mermaid-live-editor.git
synced 2025-03-18 17:16:21 +03:00
9 lines
120 B
Docker
9 lines
120 B
Docker
FROM node:18.18.2
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
RUN npm install
|
|
COPY . .
|
|
RUN ls
|
|
CMD ["yarn", "dev"]
|