Add excalidraw as submodule

This commit is contained in:
patwie
2024-03-29 13:53:53 +00:00
parent 31c8029402
commit 3893dfb13e
5 changed files with 31 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:18 AS build
WORKDIR /home/node/app
COPY . .
RUN npm install
RUN cd excalidraw-app && npm run build:app:docker
FROM ubuntu:20.04
COPY --from=build /home/node/app/excalidraw-app/build /frontend