a7c2403c4a
- Add QuartoRunner.js: runs `quarto render --to typst --output output.pdf`, using Typst (bundled with Quarto >= 1.4) so no separate LaTeX install needed - Swap LatexRunner for QuartoRunner in CompileManager; remove latexmk-specific stats, fdb metrics, and performance sampling that no longer apply - Add 'quarto' to VALID_COMPILERS in RequestParser and set it as the default; change default rootResourcePath from main.tex to main.qmd - Add 'quarto' to safeCompilers and set it as the default in web settings - Replace with-texlive Dockerfile stage with with-quarto (Quarto deb install); add Quarto to the default final stage as well Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
79 lines
3.4 KiB
Docker
79 lines
3.4 KiB
Docker
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/overleaf/internal/
|
|
|
|
FROM node:24.14.1 AS base
|
|
|
|
# Corepack setup, shared between all the images.
|
|
ENV PATH="/overleaf/node_modules/.bin:$PATH"
|
|
ENV COREPACK_HOME=/opt/corepack
|
|
RUN corepack enable && corepack install -g yarn@4.14.1
|
|
ENV COREPACK_ENABLE_NETWORK=0
|
|
|
|
WORKDIR /overleaf/services/clsi
|
|
COPY services/clsi/install_deps.sh /overleaf/services/clsi/
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|
|
COPY services/clsi/entrypoint.sh /
|
|
|
|
# Google Cloud Storage needs a writable $HOME/.config for resumable uploads
|
|
# (see https://googleapis.dev/nodejs/storage/latest/File.html#createWriteStream)
|
|
RUN mkdir /home/node/.config && chown node:node /home/node/.config
|
|
|
|
FROM base AS app
|
|
|
|
COPY package.json yarn.lock .yarnrc.yml /overleaf/
|
|
COPY libraries/eslint-plugin/package.json /overleaf/libraries/eslint-plugin/package.json
|
|
COPY libraries/fetch-utils/package.json /overleaf/libraries/fetch-utils/package.json
|
|
COPY libraries/logger/package.json /overleaf/libraries/logger/package.json
|
|
COPY libraries/metrics/package.json /overleaf/libraries/metrics/package.json
|
|
COPY libraries/o-error/package.json /overleaf/libraries/o-error/package.json
|
|
COPY libraries/overleaf-editor-core/package.json /overleaf/libraries/overleaf-editor-core/package.json
|
|
COPY libraries/promise-utils/package.json /overleaf/libraries/promise-utils/package.json
|
|
COPY libraries/settings/package.json /overleaf/libraries/settings/package.json
|
|
COPY libraries/stream-utils/package.json /overleaf/libraries/stream-utils/package.json
|
|
COPY services/clsi/package.json /overleaf/services/clsi/package.json
|
|
COPY .yarn/patches/ /overleaf/.yarn/patches/
|
|
|
|
RUN cd /overleaf && yarn workspaces focus @overleaf/clsi overleaf
|
|
COPY libraries/eslint-plugin/ /overleaf/libraries/eslint-plugin/
|
|
COPY libraries/fetch-utils/ /overleaf/libraries/fetch-utils/
|
|
COPY libraries/logger/ /overleaf/libraries/logger/
|
|
COPY libraries/metrics/ /overleaf/libraries/metrics/
|
|
COPY libraries/o-error/ /overleaf/libraries/o-error/
|
|
COPY libraries/overleaf-editor-core/ /overleaf/libraries/overleaf-editor-core/
|
|
COPY libraries/promise-utils/ /overleaf/libraries/promise-utils/
|
|
COPY libraries/settings/ /overleaf/libraries/settings/
|
|
COPY libraries/stream-utils/ /overleaf/libraries/stream-utils/
|
|
COPY services/clsi/ /overleaf/services/clsi/
|
|
|
|
FROM app AS with-quarto
|
|
|
|
ARG QUARTO_VERSION=1.6.39
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends curl ca-certificates \
|
|
&& curl -fsSL "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.deb" -o /tmp/quarto.deb \
|
|
&& dpkg -i /tmp/quarto.deb \
|
|
&& rm /tmp/quarto.deb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p cache compiles output \
|
|
&& chown node:node cache compiles output
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|
|
|
|
FROM app
|
|
|
|
ARG QUARTO_VERSION=1.6.39
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends curl ca-certificates \
|
|
&& curl -fsSL "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.deb" -o /tmp/quarto.deb \
|
|
&& dpkg -i /tmp/quarto.deb \
|
|
&& rm /tmp/quarto.deb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p cache compiles output \
|
|
&& chown node:node cache compiles output
|
|
|
|
CMD ["node", "--expose-gc", "app.js"]
|