From 6d190b1cefff3f35b43eff223931e469e662162c Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 08:41:02 +0100 Subject: [PATCH] add material Whiteoard --- whitebophir_application_dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/whitebophir_application_dockerfile b/whitebophir_application_dockerfile index c3d07e7..b7d6d0a 100644 --- a/whitebophir_application_dockerfile +++ b/whitebophir_application_dockerfile @@ -16,6 +16,12 @@ RUN wget https://github.com/lovasoa/whitebophir/archive/refs/tags/v${VERSION}.ta && tar --strip-components=1 -xvzf artifact.tar.gz \ && rm artifact.tar.gz +RUN wget https://github.com/H2-invent/materialWhitebophir/archive/master.tar.gz -O artifact.tar.gz \ + && tar --strip-components=1 -xvzf artifact.tar.gz \ + && mv fonts client-data/fonts/ \ + && mv css/board.css client-data/board.css \ + && rm artifact.tar.gz + RUN npm ci --production EXPOSE 3000