mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Includes patches for Server Pro/CE 5.x and 6.x GitOrigin-RevId: 67e387c96421b681339dbc1d89a8af0c34a163ef
14 lines
415 B
Docker
14 lines
415 B
Docker
FROM sharelatex/sharelatex:5.5.7
|
|
|
|
# Apply security updates to base image
|
|
RUN apt update && apt install -y linux-libc-dev \
|
|
&& unattended-upgrade --verbose --no-minimal-upgrade-steps \
|
|
&& apt purge -y imagemagick \
|
|
&& apt autoremove -y \
|
|
&& apt install -y poppler-utils \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Update converter
|
|
COPY issue_31527.patch .
|
|
RUN patch -p0 < issue_31527.patch && rm issue_31527.patch
|