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.
11 lines
299 B
Docker
11 lines
299 B
Docker
FROM ghcr.io/pengx17/logseq-publish as build
|
|
WORKDIR /home/logseq
|
|
ENV LOGSEQ_SRC=/home/logseq/graph
|
|
ENV LOGSEQ_DEST=output
|
|
ENV LOGSEQ_IS_TRACE=false
|
|
ENV LOGSEQ_THEME=dark
|
|
COPY . /home/logseq/graph
|
|
RUN bash entrypoint.sh
|
|
|
|
FROM nginx
|
|
COPY --from=build /home/logseq/graph/output /usr/share/nginx/html |