Files
overleaf-cep/server-ce/hotfix/6.1.1/Dockerfile
2026-03-15 03:39:16 +01:00

13 lines
392 B
Docker

FROM sharelatex/sharelatex:6.1.0
# Apply security updates to base image
RUN apt update && apt install -y linux-libc-dev \
&& unattended-upgrade --verbose --no-minimal-upgrade-steps \
&& rm -rf /var/lib/apt/lists/*
# Fix rendering logic for UI elements in the redesigned editor
COPY pr_31004.patch .
RUN patch -p1 < pr_31004.patch && rm pr_31004.patch
RUN node genScript compile | bash