mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
13 lines
392 B
Docker
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
|