From c84273aa9ff8e84ce9e684303d2646e919ac6177 Mon Sep 17 00:00:00 2001 From: Musab Erdem Date: Thu, 6 Feb 2025 17:39:13 +0100 Subject: [PATCH] =?UTF-8?q?Dockerfile-base=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile-base | 91 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 Dockerfile-base diff --git a/Dockerfile-base b/Dockerfile-base new file mode 100644 index 0000000..321fb41 --- /dev/null +++ b/Dockerfile-base @@ -0,0 +1,91 @@ +# -------------------------------------------------- +# Overleaf Base Image (sharelatex/sharelatex-base) +# -------------------------------------------------- + +FROM phusion/baseimage:noble-1.0.0 + +# Makes sure LuaTex cache is writable +# ----------------------------------- +ENV TEXMFVAR=/var/lib/overleaf/tmp/texmf-var + +# Update to ensure dependencies are updated +# ------------------------------------------ +ENV REBUILT_AFTER="2024-15-10" + +# Install dependencies +# -------------------- +RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ +# Technically, we are using potentially stale package-lists with the below line. +# Practically, apt refreshes the lists as needed and release builds run in fresh CI VMs without the cache. + --mount=type=cache,target=/var/lib/apt/lists,sharing=locked true \ +# Enable caching: https://docs.docker.com/reference/dockerfile/#example-cache-apt-packages +&& rm -f /etc/apt/apt.conf.d/docker-clean && echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache \ +&& apt-get update \ +&& apt-get install -y \ + unattended-upgrades \ + build-essential wget net-tools unzip time imagemagick optipng strace nginx git python3 python-is-python3 zlib1g-dev libpcre3-dev gettext-base libwww-perl ca-certificates curl gnupg \ + qpdf \ +# upgrade base-image, batch all the upgrades together, rather than installing them on-by-one (which is slow!) +&& unattended-upgrade --verbose --no-minimal-upgrade-steps \ +# install Node.js https://github.com/nodesource/distributions#nodejs +&& mkdir -p /etc/apt/keyrings \ +&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ +&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ +&& apt-get update \ +&& apt-get install -y nodejs \ + \ +&& rm -rf \ +# We are adding a custom nginx config in the main Dockerfile. + /etc/nginx/nginx.conf \ + /etc/nginx/sites-enabled/default + +# Install TexLive +# --------------- +# CTAN mirrors occasionally fail, in that case install TexLive using a +# different server, for example https://ctan.crest.fr +# +# # docker build \ +# --build-arg TEXLIVE_MIRROR=https://ctan.crest.fr/tex-archive/systems/texlive/tlnet \ +# -f Dockerfile-base -t sharelatex/sharelatex-base . +ARG TEXLIVE_MIRROR=https://mirror.ox.ac.uk/sites/ctan.org/systems/texlive/tlnet + +RUN mkdir /install-tl-unx \ +&& wget --quiet https://tug.org/texlive/files/texlive.asc \ +&& gpg --import texlive.asc \ +&& rm texlive.asc \ +&& wget --quiet ${TEXLIVE_MIRROR}/install-tl-unx.tar.gz \ +&& wget --quiet ${TEXLIVE_MIRROR}/install-tl-unx.tar.gz.sha512 \ +&& wget --quiet ${TEXLIVE_MIRROR}/install-tl-unx.tar.gz.sha512.asc \ +&& gpg --verify install-tl-unx.tar.gz.sha512.asc \ +&& sha512sum -c install-tl-unx.tar.gz.sha512 \ +&& tar -xz -C /install-tl-unx --strip-components=1 -f install-tl-unx.tar.gz \ +&& rm install-tl-unx.tar.gz* \ +&& echo "tlpdbopt_autobackup 0" >> /install-tl-unx/texlive.profile \ +&& echo "tlpdbopt_install_docfiles 0" >> /install-tl-unx/texlive.profile \ +&& echo "tlpdbopt_install_srcfiles 0" >> /install-tl-unx/texlive.profile \ +&& echo "selected_scheme scheme-full" >> /install-tl-unx/texlive.profile \ + \ +&& /install-tl-unx/install-tl \ + -profile /install-tl-unx/texlive.profile \ + -repository ${TEXLIVE_MIRROR} \ + \ +&& $(find /usr/local/texlive -name tlmgr) path add \ +&& tlmgr install --repository ${TEXLIVE_MIRROR} \ + latexmk \ + texcount \ + synctex \ + etoolbox \ + xetex \ +&& tlmgr path add \ +&& rm -rf /install-tl-unx + + +# Set up overleaf user and home directory +# ----------------------------------------- +RUN adduser --system --group --home /overleaf --no-create-home overleaf && \ + mkdir -p /var/lib/overleaf && \ + chown www-data:www-data /var/lib/overleaf && \ + mkdir -p /var/log/overleaf && \ + chown www-data:www-data /var/log/overleaf && \ + mkdir -p /var/lib/overleaf/data/template_files && \ + chown www-data:www-data /var/lib/overleaf/data/template_files \ No newline at end of file