Mediocreatmybest commited on
Commit
0f01dd7
·
1 Parent(s): aa72afd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -3,6 +3,8 @@ FROM node:lts-bullseye
3
  RUN apt update
4
  RUN apt install git yarn -y
5
  RUN git clone https://github.com/excalidraw/excalidraw
6
- RUN yarn & yarn start
 
 
7
 
8
 
 
3
  RUN apt update
4
  RUN apt install git yarn -y
5
  RUN git clone https://github.com/excalidraw/excalidraw
6
+ RUN cd excalidraw & \
7
+ yarn & \
8
+ yarn start
9
 
10