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.
|
FROM ghcr.io/pengx17/logseq-publish as build
|
|
WORKDIR /home/logseq
|
|
ENV LOGSEQ_SRC=/work/src
|
|
ENV LOGSEQ_DEST=output
|
|
COPY . /work/src
|
|
RUN bash entrypoint.sh
|
|
|
|
FROM nginx
|
|
COPY --from=build /work/src/output/** /usr/share/nginx/html/ |