overleaf/server-ce/hotfix/5.0.5/Dockerfile
Jakob Ackermann aa142b3c09 Merge pull request #18825 from overleaf/jpa-hotfix-4-2-5-5-0-5
[server-pro] add hotfixes 4.2.5 and 5.0.5

GitOrigin-RevId: 55a138662d3c2059ce802e6a6fd70e70fd01c8cd
2024-06-12 08:05:32 +00:00

12 lines
367 B
Docker

FROM sharelatex/sharelatex:5.0.4
# Install dev dependencies as part of "genScript compile"
COPY pr_18570.patch .
RUN patch -p1 < pr_18570.patch && rm pr_18570.patch
# Adopted from https://github.com/overleaf/internal/pull/18819
COPY pr_18819.patch .
RUN patch -p1 < pr_18819.patch && rm pr_18819.patch
# Recompile frontend assets
RUN node genScript compile | bash