fix dockerfile, copy new ui code

This commit is contained in:
Nystik 2026-03-19 15:37:47 +01:00
parent f992eda9da
commit c54e4f3d66

View file

@ -6,10 +6,12 @@ WORKDIR /build
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci --ignore-scripts RUN npm ci --ignore-scripts
COPY build.js ./ COPY build.js build-ui.js ./
COPY shims/ ./shims/ COPY shims/ ./shims/
COPY services/ ./services/
COPY ui/ ./ui/
RUN npm run build:shims RUN npm run build
# Production image. No Obsidian code included. # Production image. No Obsidian code included.
# On first run, the entrypoint downloads and patches Obsidian. # On first run, the entrypoint downloads and patches Obsidian.