You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
332 B
Docker
7 lines
332 B
Docker
FROM ghcr.io/pengx17/logseq-base:master as build
|
|
WORKDIR /home/logseq
|
|
COPY . /work/src
|
|
RUN xvfb-run node /home/logseq/graph/publish.mjs -p /work/src -t /home/logseq/graph/build_trace.txt -o /home/logseq/graph/HTMLOutput > /home/logseq/graph/build.log
|
|
|
|
FROM nginx
|
|
COPY --from=build /home/logseq/graph/HTMLOutput /usr/share/nginx/html |